JSInt32Array constructor - JSInt32Array - dart:js_interop library (original) (raw)
- @Since('3.6')
JSInt32Array([
- JSArrayBuffer buffer,
- int byteOffset,
- int length ])
Creates a JavaScript Int32Array
with buffer
as its backing storage, offset by byteOffset
bytes, of size length
.
If no buffer
is provided, creates an empty Int32Array
.
Implementation
@Since('3.6')
external JSInt32Array([JSArrayBuffer buffer, int byteOffset, int length]);