WasmInt16Pointer constructor

WasmInt16Pointer(
  1. int address
)

Implementation

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