nextByte property

int nextByte

Implementation

int get nextByte {
  if (encryptedCounterBuffer.isEmpty) {
    _refill();
  }
  return encryptedCounterBuffer.removeFirst();
}