ccCallRejected method
ccCallRejected is used to inform the listeners that a call is rejected by the logged-in user.
Implementation
@override
void ccCallRejected(Call call) {
  if (_checkCallInSameConversation(call)) {
    _onMessageFromLoggedInUser(call, markRead: false, playSound: false);
  }
}