startGather static method

Future<Result> startGather()

开始采集

Implementation

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