TorrentRenamePathArgs constructor

const TorrentRenamePathArgs({
  1. required TorrentId id,
  2. required String oldPath,
  3. required String newName,
})

Implementation

const TorrentRenamePathArgs({
  required this.id,
  required this.oldPath,
  required this.newName,
});