ccOutgoingCall method

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

ccOutgoingCall is used to inform the listeners that an outgoing call is initiated by the logged-in user.

Implementation

@override
void ccOutgoingCall(Call call) {
  if (_checkCallInSameConversation(call)) {
    _onMessageFromLoggedInUser(call, markRead: false, playSound: false);
  }
}