how to get current date time in flutter in milliseconds code example
Example 1: flutter get millis time
void main() {
print(DateTime.now().millisecondsSinceEpoch);
}
Example 2: how to display current date time in flutter
main() {
var now = new DateTime.now();
var formatter = new DateFormat('yyyy-MM-dd');
String formattedDate = formatter.format(now);
print(formattedDate); // 2016-01-25
}