encodeBoolOrNull method
Encodes a nullable boolean value for the given key or id.
Implementation
@override
void encodeBoolOrNull(String key, bool? value, {int? id}) {
_encodeKey(key);
if (value == null) return;
writer.add('$value');
}
Encodes a nullable boolean value for the given key or id.
@override
void encodeBoolOrNull(String key, bool? value, {int? id}) {
_encodeKey(key);
if (value == null) return;
writer.add('$value');
}