Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

time difference flutter

//the birthday's date
 final birthday = DateTime(1967, 10, 12);
 final date2 = DateTime.now();
 final difference = date2.difference(birthday).inDays;
 
PREVIOUS NEXT
Tagged: #time #difference #flutter
ADD COMMENT
Topic
Name
9+8 =