decodeIntOrNull method
Decodes the data for the given key or id as a nullable integer value.
Implementation
@override
int? decodeIntOrNull(String key, {int? id}) {
var d = decoders[key] ?? decoders[id];
return d?.clone().decodeIntOrNull();
}
Decodes the data for the given key or id as a nullable integer value.
@override
int? decodeIntOrNull(String key, {int? id}) {
var d = decoders[key] ?? decoders[id];
return d?.clone().decodeIntOrNull();
}