WasmTable<T> constructor Null safety

WasmTable<T>(
  1. int size
)

Declare a table with the given size.

Must be an initializer for a static field. The size argument must be either a constant or a reference to a static final field with a constant initializer.

Implementation

external WasmTable(int size);