acceptVideoUpgrade method

Future<void> acceptVideoUpgrade(
  1. int callId,
  2. bool withVideo
)

Accept requested upgrade of the call's media and specify is allowed to use video

Implementation

Future<void> acceptVideoUpgrade(int callId, bool withVideo) async {
  return _platform.acceptVideoUpgrade(callId, withVideo);
}