stopGather static method

Future<Result> stopGather()

停止采集

Implementation

static Future<Result> stopGather() async {
  final String? json = await XbrGaodeLocationAndTrack._methodChannel.invokeMethod('stopGather');
  Result result = Result.fromJson(jsonDecode(json ?? "{}"));
  return result;
}