torrent_parser 0.1.0 torrent_parser: ^0.1.0 copied to clipboard
Utility to 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());
}