torrent_parser 0.1.4 torrent_parser: ^0.1.4 copied to clipboard
This library contains various utility to validate and parse .torrent files.
example/torrent_parser_example.dart
import 'package:torrent_parser/torrent_parser.dart';
main() async {
final parser = await TorrentParser.fromFile('test/multi.torrent');
print(parser.parse());
}