Writes a byte b to this bytes instance.
b
void writeByte(int b, {String? description}) { if (description != null) { _data.add(BytesEmitter(data: b, description: description)); return; } _data.add(b); }