closeSync method

void closeSync()

Implementation

void closeSync() {
  if (_content is InputStreamBase) {
    (_content as InputStreamBase).closeSync();
  }
  if (_rawContent is InputStreamBase) {
    (_rawContent as InputStreamBase).closeSync();
  }
  _content = null;
  _rawContent = null;
}