NativeInt32Array constructor

NativeInt32Array(
  1. int size
)

Implementation

NativeInt32Array(int size) : super(size) {
  _list = Int32List(size);
  oneByteSize = Int32List.bytesPerElement;
}