rejectCall function

Future<void> rejectCall(
  1. String callSessionId,
  2. Set<int> callMembers, {
  3. String platform = 'flutter',
  4. Map<String, String>? userInfo,
})

Sends the reject call signal via HTTP. It is useful in case when the used doesn't have an active chat connection (for example from a Notification) callSessionId - the id of the P2PSession session callMembers - the ids of all call members including the caller and excluding the current user platform - the platform name the app ran on userInfo - additional info about performed action

Implementation

Future<void> rejectCall(
  String callSessionId,
  Set<int> callMembers, {
  String platform = 'flutter',
  Map<String, String>? userInfo,
}) {
  List<Future<void>> requests = [];
  callMembers.forEach((memberId) {
    requests.add(RejectCallQuery(
      callSessionId,
      memberId,
      platform,
      userInfo == null ? {} : userInfo,
    ).perform());
  });

  return Future.wait(requests);
}