dateRangeMaximumDateLimitLabel method
The label used for the maximum time limit in the date range picker.
Implementation
@override
String dateRangeMaximumDateLimitLabel(Duration duration) {
final String time = formatDuration(duration);
return 'The difference between the start time and end time must be less '
'than $time';
}