stopGather static method

Future<Result> stopGather()

停止采集

Implementation

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