openChat static method

Future<bool?> openChat({
  1. String? chatId,
  2. String? message,
})

Implementation

static Future<bool?> openChat({
  String? chatId,
  String? message,
}) {
  return ChannelTalkFlutterPlatform.instance.openChat(
    chatId: chatId,
    message: message,
  );
}