Answers for "dart set time to date"

3

how to display current date time in flutter

DateTime dateToday = DateTime(DateTime.now().year, DateTime.now().month, DateTime.now().day) ;
Posted by: Guest on January-03-2021
3

how to convert timestamp to datetime in dart

Timestamp time; //from firebase
DateTime.fromMicrosecondsSinceEpoch(time.microsecondsSinceEpoch)
Posted by: Guest on November-05-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language