swiss_knife

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

swiss knife

Swiss Knife #










Dart Useful Tools:

collections
data
date
events
io
json
loader
math
regexp
resources
string
uri

and more...
API #
See Swiss Knife API documentation for full functionalities.
Usage #
A simple EventStream usage example:
import 'package:swiss_knife/swiss_knife.dart';

class User {

final EventStream<String> onNotification = new EventStream() ;

void notify(String msg) {
onNotification.add(msg) ;
}

}

void main() {

User user = new User() ;

user.onNotification.listen((msg) {
print("NOTIFICATION> $msg") ;
});

}

copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
Author #
Graciliano M. Passos: gmpassos@GitHub.
License #
Dart free & open-source license.

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.