closeSobotChat method
Implementation
Future<dynamic> closeSobotChat(params) async {
try {
final result = sobotMethodChannel.invokeMethod(closeSobotChatMethod,params);
return result;
} on PlatformException catch (e) {
print(e);
//抛出异常
return {};
}
}