calls method

  1. @override
Future<TUIActionCallback> calls(
  1. List<String> userIdList,
  2. TUICallMediaType mediaType,
  3. TUICallParams params
)
override

Place an outgoing call to one or more users.

Params:

  • userIdList: Callee user IDs.
  • mediaType: Audio or Video.
  • params: Extended call parameters (roomId, push info, timeout, etc.).

Returns: TUIActionCallback.

Implementation

@override
Future<TUIActionCallback> calls(List<String> userIdList, TUICallMediaType mediaType, TUICallParams params) async {
  return _callEngineNative.calls(userIdList, mediaType, params);
}