decodePlatformFriendType function

PlatformFriendType? decodePlatformFriendType(
  1. dynamic value
)

Implementation

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

  return PlatformFriendType.ProtectedInvalidEnumValue;
}