startSingleCall static method
Initiate a 1v1 call.
Param userId called user id.
Param type call type, see ChatCallKitCallType.
Param ext additional information.
Implementation
static Future<String> startSingleCall(
String userId, {
String? inviteMessage,
ChatCallKitCallType type = ChatCallKitCallType.audio_1v1,
Map<String, String>? ext,
}) {
return _impl.startSingleCall(userId,
type: type, ext: ext, inviteMessage: inviteMessage);
}