decodeRuntimeGroupMemberType function

RuntimeGroupMemberType? decodeRuntimeGroupMemberType(
  1. dynamic value
)

Implementation

RuntimeGroupMemberType? decodeRuntimeGroupMemberType (dynamic value) {
  if(value == null) {
    return null;
  }
  if(_$RuntimeGroupMemberTypeValueMap.containsKey(value)){
    return _$RuntimeGroupMemberTypeValueMap[value];
  }

  return RuntimeGroupMemberType.ProtectedInvalidEnumValue;
}