decode method
Decodes a data
to a CreateImageRequestResponseFormatEnum.
If allowNull
is true and the data
cannot be decoded successfully,
then null is returned. However, if allowNull
is false and the data
cannot be decoded successfully, then an UnimplementedError is thrown.
The allowNull
is very handy when an API changes and a new enum value is added or removed,
and users are still using an old app with the old code.
Implementation
CreateImageRequestResponseFormatEnum? decode(dynamic data, {bool allowNull = true}) {
if (data != null) {
switch (data) {
case r'url': return CreateImageRequestResponseFormatEnum.url;
case r'b64_json': return CreateImageRequestResponseFormatEnum.b64Json;
default:
if (!allowNull) {
throw ArgumentError('Unknown enum value to decode: $data');
}
}
}
return null;
}