File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 3.0.2] - 2021-12-19
2
+
3
+ * Update Readme
4
+
1
5
## [ 3.0.1] - 2021-12-18
2
6
3
7
* Gracefully handle bad responses
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ In your flutter project add the dependency:
15
15
``` dart
16
16
dependencies:
17
17
...
18
- woosignal: ^3.0.1
18
+ woosignal: ^3.0.2
19
19
```
20
20
21
21
### Usage example #
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class WooSignal {
59
59
bool ? _debugMode;
60
60
61
61
/// Initialize the class
62
- Future init ({required String ? appKey, bool debugMode = false }) async {
62
+ Future < void > init ({required String ? appKey, bool debugMode = false }) async {
63
63
assert (appKey != null && appKey != "" ,
64
64
"Provide a valid app key. Visit https://woosignal.com" );
65
65
_apiProvider = ApiProvider (appKey: appKey! , debugMode: debugMode);
Original file line number Diff line number Diff line change 1
1
name : woosignal
2
2
description : WooCommerce REST API for dart, connect a WooCommerce store and start developing with our interface for their API endpoints.
3
- version : 3.0.1
3
+ version : 3.0.2
4
4
homepage : https://woosignal.com
5
5
repository : https://github.com/woosignal/flutter-woocommerce-api
6
6
issue_tracker : https://github.com/woosignal/flutter-woocommerce-api/issues
You can’t perform that action at this time.
0 commit comments