boolByte static method

Uint8List boolByte(
  1. bool value
)

Implementation

static Uint8List boolByte(bool value) =>
    Uint8List(1)..buffer.asInt8List()[0] = value ? 1 : 0;