clone method

  1. @override
Uint8List clone(
  1. Uint8List instance
)
override

Clones the instance.

Implementation

@override
Uint8List clone(Uint8List instance) {
  if (instance is UnmodifiableUint8ListView) {
    return instance;
  }
  return Uint8List.fromList(instance);
}