ccCallRejected method

  1. @override
void ccCallRejected(
  1. Call call
)
override

ccCallRejected is used to inform the listeners that a call is rejected by the logged-in user.

Implementation

@override
void ccCallRejected(Call call) {
  if (_checkCallSettings() == false) {
    return;
  }
  refreshSingleConversation(call, true);
}