openChatWindow method

  1. @override
Future<void> openChatWindow({
  1. required String licenseId,
  2. required String username,
  3. required String email,
  4. String? groupId,
  5. Map<String, String>? customParameters,
})

Open the chat window.

Implementation

@override
Future<void> openChatWindow({
  required String licenseId,
  required String username,
  required String email,
  String? groupId,
  Map<String, String>? customParameters,
}) async {
  _jsHelper.callStartLiveChat(licenseId, username, email);
}