ReferNotifier constructor
ReferNotifier(
- RTCSession session,
- int? id, [
- 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);
}