stopPush method

Future<bool> stopPush()

关闭推送

Implementation

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