big_date 0.0.2
big_date: ^0.0.2 copied to clipboard
A Dart library that expand DateTime, it also support diiferent countries` calendar.
example/big_date_example.dart
import 'package:big_date/src/japanese_date.dart';
void main() {
// DateTime d = DateTime(2022, 3, 2);
// d = d.toJapanDate();
// print(d.format("WW"));
// print(d.locatedWeekDay);
print(JapanDate(1711).locatedYear);
}