close method

void close()

Implementation

void close() {
  if (isClosed) {
    return;
  }
  _readStream.close();
}