minibus

Last updated:

0 purchases

minibus Image
minibus Images
Add to Cart

Description:

minibus

minibus #
A library for a minimal synchronous event bus.
Basic Usage #
A simple usage example:
import 'package:minibus/minibus.dart';
String EVENT = "myevent";

main() {
MiniBus bus1 = new MiniBus();
bus1.subscribe(EVENT, (){print('Hello World!')});
bus1.post(EVENT);
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs.
Run tests with:

pub run test

Check source code formatting:

dartfmt -n .

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.