torrentGetAll method
Future<TorrentGetResponse>
torrentGetAll(
- TorrentIds<
TorrentId> ids, { - RpcTag? tag,
- int? timeout,
Implementation
Future<TorrentGetResponse> torrentGetAll(TorrentIds ids,
{RpcTag? tag, int? timeout}) =>
checkAndCallApi(
TorrentGetRequestParam.build(
version: serverRpcVersion, ids: ids, fields: null),
method: TransmissionRpcMethod.torrentGet,
tag: tag,
timeout: timeout,
responseParamBuilder: (rawParam) =>
TorrentGetResponseParam.fromJson(rawParam),
);