WasmInt8Pointer constructor

WasmInt8Pointer(
  1. int address
)

Implementation

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