onNotifyCallIn method

void onNotifyCallIn(
  1. Map args
)

Implementation

void onNotifyCallIn(Map args) {
  String callID = args['callID'];
  String caller = args['caller'];
  String meetInfo = args['meetInfo'];
  notifyCallIn?.call(callID, caller, meetInfo);
}