call static method
发起通话
rtcToken RTC通话令牌
aiAgentInstanceId AI代理实例ID
aiAgentUserId AI代理用户ID
channelId 通话频道ID
Implementation
static Future<void> call({
required String rtcToken,
required String aiAgentInstanceId,
required String aiAgentUserId,
required String channelId,
}) {
return _platform.call(
rtcToken: rtcToken,
aiAgentInstanceId: aiAgentInstanceId,
aiAgentUserId: aiAgentUserId,
channelId: channelId,
);
}