closeSobotChat method

Future closeSobotChat(
  1. dynamic params
)

Implementation

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