startSingleCall method
Implementation
Future<String> startSingleCall(
String userId, {
String? inviteMessage,
ChatCallKitCallType type = ChatCallKitCallType.audio_1v1,
Map<String, String>? ext,
}) {
return _chat.startSingleCall(
userId,
inviteMessage: inviteMessage,
type: type,
ext: ext,
);
}