onAcceptNotif method

void onAcceptNotif(
  1. int callId,
  2. bool withVideo
)

Handle case when call answered by tapping notification button (Android only)

Implementation

void onAcceptNotif(int callId, bool withVideo) {
  _findCall(callId)?.accept(withVideo);
}