open method

Uint8List open(
  1. Uint8List box
)

Implementation

Uint8List open(Uint8List box) {
  if (box == null) return null;
  return open_len(box, 0, box.length);
}