eztime 0.0.1 copy "eztime: ^0.0.1" to clipboard
eztime: ^0.0.1 copied to clipboard

Easy to use, tiny Time library for when you just need time without all that DateTime nonsense.

example/eztime_example.dart

import 'package:eztime/eztime.dart';

void main() {
  var time1 = Time(10, 30, 15); // 10:30:15
  var time2 = Time(5, 15, 5); // 05:15:05
  print('$time1 + $time2 = ${time1 + time2}'); // 15:45:20
  print('$time1 - $time2 = ${time1 - time2}'); // 05:15:10
}
1
likes
140
points
32
downloads

Publisher

unverified uploader

Weekly Downloads

Easy to use, tiny Time library for when you just need time without all that DateTime nonsense.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on eztime