prasule/lib/util/get_last_date.dart

9 lines
240 B
Dart
Raw Normal View History

/// Extension to get last day of the month
extension LastDay on DateTime {
/// Returns the last day of the month as [int]
int get lastDay {
final d = add(const Duration(days: 31));
return DateTime(d.year, d.month, 0).day;
}
}