formatMinute method
- @override
override
Formats TimeOfDay.minute in the given time of day according to the value of timeOfDayFormat.
Implementation
@override
String formatMinute(TimeOfDay timeOfDay) {
return _twoDigitZeroPaddedFormat.format(timeOfDay.minute);
}