date_calc_lts 1.0.0+2 copy "date_calc_lts: ^1.0.0+2" to clipboard
date_calc_lts: ^1.0.0+2 copied to clipboard

Updated Date manipulation library for Dart. It provides a class that inherits from the DateTime class, makes it easy to calculate additions, subtractions and so on.

example/main.dart

import 'package:date_calc_lts/date_calc_lts.dart';

void main() {
  final date = DateCalc(2019, 1, 5);
  print(date.addMonth(1));
  // => 2019-02-05 00:00:00.000
  print(date.addYear(1).isLeapYear());
  // => true
  print(date.addYear(1).addMonth(1).daysInMonth());
  // => 29
  print(date.dup(minute: 11));
  // => 2019-01-05 00:11:00.000
  print(date.differenceValue(date: DateTime(2019, 3, 3), type: DateType.month));
  // => 1
  print(DateCalc.now().isToday());
  // => true

  // You can cast type from DateCalc to DateTime.
  print(DateCalc(2019, 1, 5).subtractYear(1).toDate().runtimeType);
  // => DateTime
}
2
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Updated Date manipulation library for Dart. It provides a class that inherits from the DateTime class, makes it easy to calculate additions, subtractions and so on.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

intl, meta

More

Packages that depend on date_calc_lts