clone method

NativeInt16Array clone()
override

Implementation

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