decodeIgnoreLength function

IgnoreLength? decodeIgnoreLength(
  1. dynamic value
)

Implementation

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

  return IgnoreLength.ProtectedInvalidEnumValue;
}