Buffer.fromInt8 constructor
Buffer.fromInt8(
- int value
Creates a Buffer from an i8
value.
Implementation
factory Buffer.fromInt8(final int value) =>
Buffer(ByteLength.i8)..setInt8(value, 0);
Creates a Buffer from an i8
value.
factory Buffer.fromInt8(final int value) =>
Buffer(ByteLength.i8)..setInt8(value, 0);