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