ccCallRejected static method

void ccCallRejected(
  1. Call call
)

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

Implementation

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