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