addInputBytes method

  1. @override
void addInputBytes(
  1. List<int> bytes
)
override

Adds all the bytes to this stream.

Implementation

@override
void addInputBytes(List<int> bytes) {
  pendingBytes.addAll(bytes);
}