unreadMany method

  1. @override
void unreadMany(
  1. int count
)
override

Pushes the specified number of characters to the top of the stream.

  • count A number of characcted to be pushed back.

Implementation

@override
void unreadMany(int count) {
  while (count > 0) {
    unread();
    count--;
  }
}