openChatWithAnother method

Future<void> openChatWithAnother(
  1. ChatUser user
)

Implementation

Future<void> openChatWithAnother(ChatUser user) async {
  _checkConfig();
  await ChatPluginFlutterPlatform.instance.openChatWithAnother(user);
}