Last updated:
0 purchases
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 .
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.