openChat method

Future<MethodResponse> openChat([
  1. String? to
])

Opens the chat dialog. If to contains a valid participantId, the private chat with that particular participant will be opened.

Implementation

Future<MethodResponse> openChat([String? to]) async {
  return await JitsiMeetPlatform.instance.openChat(to);
}