modelToViewValue method

  1. @override
String modelToViewValue(
  1. TimeOfDay? modelValue
)
override

Returns the value that must be supplied to the UI widget.

Converts value from control data type to UI data type.

Implementation

@override
String modelToViewValue(TimeOfDay? modelValue) {
  return modelValue == null
      ? ''
      : '${modelValue.hour}:${_addLeadingZeroIfNeeded(modelValue.minute)}';
}