ReferNotifier constructor

ReferNotifier(
  1. RTCSession session,
  2. int? id, [
  3. int? expires
])

Implementation

ReferNotifier(rtc.RTCSession session, int? id, [int? expires]) {
  _session = session;
  _id = id;
  _expires = expires ?? C.expires;
  _active = true;

  // The creation of a Notifier results in an immediate NOTIFY.
  notify(100);
}