decodePlatformErrorCodes function
Implementation
PlatformErrorCodes? decodePlatformErrorCodes (dynamic value) {
if(value == null) {
return null;
}
if(_$PlatformErrorCodesValueMap.containsKey(value)){
return _$PlatformErrorCodesValueMap[value];
}
return PlatformErrorCodes.ProtectedInvalidEnumValue;
}