fetch_next_monitor_results method

Results and waiting options are depends on the wait parameter. All returned results will be removed from the queue's resolved list.

Implementation

Future<ResultOfFetchNextMonitorResults> fetch_next_monitor_results(
    ParamsOfFetchNextMonitorResults params) async {
  final res = await _tonCore.request(
      'processing.fetch_next_monitor_results', params.toString());
  return ResultOfFetchNextMonitorResults.fromMap(res);
}