startPush method

Future<bool> startPush()

开启推送

Implementation

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