writeFixInt64 method

void writeFixInt64(
  1. Int64 value
)

Write an Int64 field Endian used is little

Implementation

void writeFixInt64(Int64 value) {
  byteList.setRange(offset, offset + 8, value.toBytes());
  offset += 8;
}