encodeBoolOrNull method

  1. @override
void encodeBoolOrNull(
  1. String key,
  2. bool? value, {
  3. int? id,
})
override

Encodes a nullable boolean value for the given key or id.

Implementation

@override
void encodeBoolOrNull(String key, bool? value, {int? id}) {
  _parent._writeObjectKey(key);
  _parent.encodeBoolOrNull(value);
}