reportConferenceMerged method

  1. @Deprecated('Use requestCallGroup for native call grouping; ending the merged-away ' 'call tears down the audio session.')
Future<int> reportConferenceMerged({
  1. required int primarySessionId,
  2. required List<int> mergedAwaySessionIds,
})

Collapses a merged conference to a single system call by ending the CallKit / ConnectionService calls for the merged-away legs.

Returns 0 on success, negative error code on failure.

Implementation

@Deprecated(
  'Use requestCallGroup for native call grouping; ending the merged-away '
  'call tears down the audio session.',
)
Future<int> reportConferenceMerged({
  required int primarySessionId,
  required List<int> mergedAwaySessionIds,
}) async {
  throw UnimplementedError(
    'reportConferenceMerged has not been implemented.',
  );
}