get_monitor_info method
Returns summary information about current state of the specified monitoring queue.
Implementation
Future<MonitoringQueueInfo> get_monitor_info(
ParamsOfGetMonitorInfo params) async {
final res = await _tonCore.request(
'processing.get_monitor_info', params.toString());
return MonitoringQueueInfo.fromMap(res);
}