nextBytes method

  1. @override
Uint8List nextBytes(
  1. int count
)
override

Get a list of bytes of arbitrary length.

Implementation

@override
Uint8List nextBytes(int count) => _autoReseedIfNeededAfter(() {
      return _delegate.nextBytes(count);
    });