byName static method
- String? name
Gets a possible IOSURLRequestNetworkServiceType instance value with name name.
Goes through IOSURLRequestNetworkServiceType.values looking for a value with
name name, as reported by IOSURLRequestNetworkServiceType.name.
Returns the first value with the given name, otherwise null.
Implementation
static IOSURLRequestNetworkServiceType? byName(String? name) {
if (name != null) {
try {
return IOSURLRequestNetworkServiceType.values.firstWhere(
(element) => element.name() == name,
);
} catch (e) {
return null;
}
}
return null;
}