addTorrent method
Implementation
@override
Future<String> addTorrent(
String torrentFile, {
List<String>? webseedUris,
Map<String, String>? options,
int position = -1,
}) async {
final result = await _invokeRequired<String>('addTorrent', {
'torrentFile': torrentFile,
'webseedUris': webseedUris,
'options': options,
'position': position,
});
return result;
}