decodeGroupSortBy function
Implementation
GroupSortBy? decodeGroupSortBy (dynamic value) {
if(value == null) {
return null;
}
if(_$GroupSortByValueMap.containsKey(value)){
return _$GroupSortByValueMap[value];
}
return GroupSortBy.ProtectedInvalidEnumValue;
}