utc_date_time 0.1.1
utc_date_time: ^0.1.1 copied to clipboard
Is basically DateTime, but for UTC to make e.g. interacting with APIs easier
example/utc_date_time_example.dart
import 'package:utc_date_time/utc_date_time.dart';
void main() {
var now = UtcDateTime.now();
print('awesome: ${now.millisecondsSinceEpoch} -> ${now.todmYHM()}');
}