NativeInt8Array constructor

NativeInt8Array(
  1. int size
)

Implementation

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