unsubscribe method

void unsubscribe(
  1. Subscription? s,
  2. bool delay
)

Implementation

void unsubscribe(Subscription? s, bool delay) {
  if (s != null && subs[s.sid] != null) {
    String proto = 'UNSUB ${s.sid}\r\n';
    _delayCommand(utf8.encode(proto), delay);
    debug('Nats::unsubscribe($delay) - $proto');
  }
}