onVideoUpgradeRequested method

void onVideoUpgradeRequested(
  1. int callId
)

Handle request 'upgrade to video' received from remote side

Implementation

void onVideoUpgradeRequested(int callId) {
  _logs?.print('onVideoUpgradeRequested callId:$callId');

  _findCall(callId)?.onVideoUpgradeRequested();
  onVideoUpgradeRequestReceived?.call(callId);
}