unsubscribe method

void unsubscribe()

Implementation

void unsubscribe() {
  if (closed == false) {
    closed = true;
    _onUnsubscribe();
  }
}