asTypedList method

Uint8List asTypedList(
  1. int amount
)

Return a typed list view on the byte data in the range offset..(offset + amount).

Implementation

Uint8List asTypedList(int amount) =>
    Uint8List.sublistView(_bytes, offset, offset + amount);