Last updated:
0 purchases
promise
This package help you create a javascript like promise library.
Features #
Promise.run, Promise.resolve Promise.reject.
Getting started #
flutter pub add promise.
Usage #
to create a rich library for promise
to /promise_test folder.
final promise = Promise.run((resolve, reject) {
resolve(3);
});
promise.then((_) {
print(_);
});
copied to clipboard
Additional information #
You can check our website for relevant information https://www.zeroant.co
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.