NativeFloat64Array constructor

NativeFloat64Array(
  1. int size
)

Implementation

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