viewToModelValue method

  1. @override
ProjectFacilityModel? viewToModelValue(
  1. String? viewValue
)

Returns the value that must be supplied to the control.

Converts value from UI data type to control data type.

Implementation

@override
ProjectFacilityModel? viewToModelValue(String? viewValue) {
  return models.firstWhereOrNull((element) => element.id == viewValue);
}