requestCallGroup method

Future<int> requestCallGroup({
  1. required List<int> sessionIds,
})

Groups the given sessions into one native conference call in the system call UI. No call is ended; the onCallKitMerge event signals the host to build the audio bridge.

Returns 0 on success, negative error code on failure.

Implementation

Future<int> requestCallGroup({required List<int> sessionIds}) async {
  throw UnimplementedError('requestCallGroup has not been implemented.');
}