TorrentRemoveRequestParam.build constructor

TorrentRemoveRequestParam.build({
  1. ServerRpcVersion? version,
  2. required TorrentIds<TorrentId> ids,
  3. bool? deleteLocalData,
})

Implementation

factory TorrentRemoveRequestParam.build(
        {ServerRpcVersion? version,
        required TorrentIds ids,
        bool? deleteLocalData}) =>
    _TorrentRemoveRequestParam(ids: ids, deleteLocalData: deleteLocalData);