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