closeSobotChatPage method

Future closeSobotChatPage(
  1. dynamic initParams
)

Implementation

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