NativeInt8Array constructor

NativeInt8Array(
  1. int size
)

Implementation

NativeInt8Array(int size) : super(size) {
  _list = Int8List(size);
  oneByteSize = Int8List.bytesPerElement;
}