DateRangePicker constructor
const
DateRangePicker({
- Key? key,
- void onPicked()?,
- required DateTime firstDate,
- required DateTime lastDate,
- required DateTimeRange<
DateTime> initialDateRange, - String? labelText,
- InputBorderType? borderType,
Implementation
const DateRangePicker({
Key? key,
this.onPicked,
required this.firstDate,
required this.lastDate,
required this.initialDateRange,
this.labelText,
this.borderType,
}) : super(key: key);