readonlyList method

  1. @override
Uint8List readonlyList(
  1. Uint8List list
)

Internal method to make the typed-list read-only.

Implementation

@override
Uint8List readonlyList(Uint8List list) => UnmodifiableUint8ListView(list);