WasmInt64Pointer constructor

WasmInt64Pointer(
  1. int address
)

Implementation

WasmInt64Pointer(super.address) : super(
  byteSize: WasmSize.Int64,
  readerFunc: (reader) => reader.Int64(),
  writerFunc: (writer, v) => writer.Int64(v),
  defaultFunc: () => 0,
);