ccCallAccepted static method

void ccCallAccepted(
  1. Call call
)

Called when a call is accepted by the logged-in user.

Implementation

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