clone method

NativeInt32Array clone()
override

Implementation

NativeInt32Array clone() {
  var _dartList = this.toDartList();
  return NativeInt32Array(_dartList.length)..set(_dartList);
}