NativeInt16Array constructor

NativeInt16Array(
  1. int size
)

Implementation

NativeInt16Array(int size) : super(size) {
  _list = Int16List(size);
  oneByteSize = Int16List.bytesPerElement;
}