accept method

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

Accept incoming call specified by its id. Use 'withVideo' to set audio-only or video call

Implementation

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