NativeInt16Array constructor

NativeInt16Array(
  1. int size
)

Implementation

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