ccOutgoingCall static method

void ccOutgoingCall(
  1. Call call
)

Called when an outgoing call is initiated by the logged-in user.

Implementation

static void ccOutgoingCall(Call call) {
  callEventsListener.forEach((key, value) {
    value.ccOutgoingCall(call);
  });
}