notify method

void notify(
  1. CallNotification notification
)

Notifies this OngoingCall about the provided CallNotification.

Implementation

void notify(CallNotification notification) {
  Log.debug('notify($notification)', '$runtimeType');
  _notifications.add(notification);
}