queue_it 0.9.0
queue_it: ^0.9.0 copied to clipboard
QueueIt makes dealing with queues easy. You can add multiple listeners, specify the number of concurrent items to process, view queue progress and more.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add queue_it
copied to clipboard
With Flutter:
$ flutter pub add queue_it
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
queue_it: ^0.9.0
copied to clipboard
Alternatively, 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:queue_it/queue_it.dart';
copied to clipboard