openSobotHelpCenter method

Future openSobotHelpCenter(
  1. dynamic initParams
)

Implementation

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