clone static method

Uint8List clone(
  1. Uint8List origin
)

clone bytes array

Implementation

static Uint8List clone(Uint8List origin) {
  return Uint8List.fromList(origin);
}