1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 20:50:04 +00:00
Files
flutter-examples/flutter_date_pickers-master/lib/src/date_period.dart
2022-10-22 20:29:43 +02:00

14 lines
247 B
Dart

/// Date period.
class DatePeriod {
/// Start of this period.
final DateTime start;
/// End of this period.
final DateTime end;
///
const DatePeriod(this.start, this.end)
: assert(start != null),
assert(end != null);
}