pushByte method

void pushByte(
  1. int byte
)

Write a single byte to the output.

Implementation

void pushByte(int byte) {
  write(Uint8List.fromList([byte]));
}