writeBool method

void writeBool(
  1. String key,
  2. bool? value
)

Implementation

void writeBool(String key, bool? value) {
  _writeEntry(key, () {
    _scalarWriter.writeBool(value!);
    return true;
  }, isValueNull: value == null);
}