decodeIgnoreLength function
Implementation
IgnoreLength? decodeIgnoreLength (dynamic value) {
if(value == null) {
return null;
}
if(_$IgnoreLengthValueMap.containsKey(value)){
return _$IgnoreLengthValueMap[value];
}
return IgnoreLength.ProtectedInvalidEnumValue;
}