prasule/lib/util/get_last_date.dart
2024-01-08 15:38:31 +01:00

9 lines
240 B
Dart

/// 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;
}
}