another_rar 0.1.0
another_rar: ^0.1.0 copied to clipboard
A pure Dart library for reading and extracting RAR archives in a streaming, random-access fashion.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add another_rarWith Flutter:
$ flutter pub add another_rarThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
another_rar: ^0.1.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:another_rar/extraction/application/extraction_application_rar_archive_reader.dart';
import 'package:another_rar/extraction/domain/extraction_domain_rar_archive_entry.dart';
import 'package:another_rar/extraction/domain/extraction_domain_rar_exception.dart';
import 'package:another_rar/extraction/domain/extraction_domain_rar_file.dart';
import 'package:another_rar/extraction/infrastructure/extraction_infrastructure_rar_file_impl.dart';
import 'package:another_rar/rar_reader.dart';