Buffer.fromInt64 constructor
Buffer.fromInt64(
- int value
Creates a Buffer from an i64
value.
Implementation
factory Buffer.fromInt64(final int value) =>
Buffer(ByteLength.i64)..setInt64(value, 0);
Creates a Buffer from an i64
value.
factory Buffer.fromInt64(final int value) =>
Buffer(ByteLength.i64)..setInt64(value, 0);