decodeBoolOrNull method
Decodes the data as a nullable boolean value.
Implementation
@override
bool? decodeBoolOrNull() {
if (_done) return null;
final key = keys.current;
return decoder.decodeBoolOrNull(key is String ? key : '', id: key is int ? key : null);
}