reportConferenceMerged method
- @Deprecated('Use requestCallGroup for native call grouping; ending the merged-away ' 'call tears down the audio session.')
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.',
);
}