decodePlatformFriendType function
Implementation
PlatformFriendType? decodePlatformFriendType (dynamic value) {
if(value == null) {
return null;
}
if(_$PlatformFriendTypeValueMap.containsKey(value)){
return _$PlatformFriendTypeValueMap[value];
}
return PlatformFriendType.ProtectedInvalidEnumValue;
}