viewToModelValue method
Returns the value that must be supplied to the control.
Converts value from UI data type to control data type.
Implementation
@override
FacilityModel? viewToModelValue(String? viewValue) {
return models.firstWhereOrNull((element) => element.id == viewValue);
}