write static method

int write(
  1. Transaction value,
  2. Uint8List buf
)

Implementation

static int write(Transaction value, Uint8List buf) {
  final handle = lower(value);
  buf.buffer.asByteData(buf.offsetInBytes).setInt64(0, handle.address);
  return 8;
}