nextBytes method

Uint8List nextBytes(
  1. int count
)

Implementation

Uint8List nextBytes(int count) {
  return Uint8List.fromList(List.generate(count, (_) => nextUint8()));
}