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