clone method

NativeInt8Array clone()
override

Implementation

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