utc_date_time 0.1.0
utc_date_time: ^0.1.0 copied to clipboard
Is basically DateTime, but for UTC to make interacting with APIs for example
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()}');
}
copied to clipboard