flutter get current time in milliseconds code example
Example 1: dart timestamp
void main() {
print(new DateTime.now().millisecondsSinceEpoch);
}
Example 2: flutter get millis time
void main() {
print(DateTime.now().millisecondsSinceEpoch);
}
Example 3: convert datetime to TZDateTimeflutter
var time = tz.TZDateTime.from(
scheduledNotificationDateTime,
tz.local,
);