writeInt64 method

void writeInt64(
  1. int value
)

Implementation

void writeInt64(int value) {
  Uint8List buf = Uint8List(8);
  ByteData.view(buf.buffer).setInt64(0, value, endianess);
  _writer.addLast(buf);
}