onCallStateChangedToActive method

void onCallStateChangedToActive(
  1. String? callId
)

Called when a call state changes to active This will cancel any reconnection timer for the call

Implementation

void onCallStateChangedToActive(String? callId) {
  if (callId != null) {
    GlobalLogger().i(
      'Call $callId state changed to ACTIVE, cancelling reconnection timer',
    );
    _cancelReconnectionTimer(callId);
  }
}