calls method
Future<TUIActionCallback>
calls(
- List<
String> userIdList, - TUICallMediaType mediaType,
- 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);
}