fromJson$Enum$CodeFormatEnum function
Implementation
Enum$CodeFormatEnum fromJson$Enum$CodeFormatEnum(String value) {
switch (value) {
case r'NUMBERIC':
return Enum$CodeFormatEnum.NUMBERIC;
case r'ALPHANUMERIC':
return Enum$CodeFormatEnum.ALPHANUMERIC;
default:
return Enum$CodeFormatEnum.$unknown;
}
}