encodeBool function

Uint8List encodeBool(
  1. bool b
)

Implementation

Uint8List encodeBool(bool b) {
  return encodeInt(b ? 1 : 0);
}