NativeInt32Array constructor

NativeInt32Array(
  1. int size
)

Implementation

NativeInt32Array(int size) : super(size) {
  _list = calloc<Int32>(size);
  oneByteSize = sizeOf<Int32>();
}