day 0.8.0  day: ^0.8.0 copied to clipboard
day: ^0.8.0 copied to clipboard
A date library Day.js in dart. Day.dart is inspired by Day.js. Write with nearly the same API. Build on the top of the powerful DateTime class.
// View https://github.com/dayjs/day.dart for more usage.
import 'package:day/day.dart';
void main() {
  final now = Day();
  // Tomorrow
  final tomorrow = now.add(1, 'date');
  print(tomorrow);
  // Chainable
  now
    ..setYear(2020)
    ..setMonth(1)
    ..setDate(1)
    ..finished();
  // Gets year
  print(now.year());
}