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