startNowTorrents method

Future<void> startNowTorrents(
  1. List<int> ids
)

Start torrents now by given ids ids integer identifier list of the torrents to remove Throws TransmissionException if errors

Implementation

Future<void> startNowTorrents(List<int> ids) async {
  final results = await _dio.post('/',
      data: _Request(methodStartNowTorrent, arguments: {
        'ids': ids,
      }).toJSON());
  _checkResults(_Response.fromJSON(results.data));
}