stopAndroidGeTuiPush function

Future<bool> stopAndroidGeTuiPush()

关闭推送 only android

Implementation

Future<bool> stopAndroidGeTuiPush() async {
  bool? status = false;
  if (_isAndroid) status = await _channel.invokeMethod<bool?>('stopPush');
  return status ?? false;
}