@@ -5,6 +5,7 @@ A wrapper based on [SplitWise](http://dev.splitwise.com/#introduction)
55- Feel free to open a PR or Issue
66- Uses OAuth 1
77- Data Classes Included
8+ - Based on null-safety
89
910### Steps
1011 - Get the consumerKey and consumerSecret from [ Splitwise Register App] ( https://secure.splitwise.com/apps )
@@ -27,25 +28,72 @@ A wrapper based on [SplitWise](http://dev.splitwise.com/#introduction)
2728| | '-- splitwise_main.dart
2829| |-- data
2930| | '-- model
30- | | |-- categories_entity.dart
31- | | |-- categories_entity.g.dart
32- | | |-- comments_entity.dart
33- | | | (18 more...)
34- | | |-- post_response.g.dart
35- | | |-- single_user_entity.dart
36- | | '-- single_user_entity.g.dart
31+ | | |-- CategoriesEntity
32+ | | | |-- CategoriesEntity.dart
33+ | | | |-- categories.dart
34+ | | | |-- icon_types.dart
35+ | | | |-- slim.dart
36+ | | | |-- square.dart
37+ | | | '-- subcategories.dart
38+ | | |-- CommentsEntity
39+ | | | |-- CommentsEntity.dart
40+ | | | '-- comments.dart
41+ | | |-- CurrentUserEntity
42+ | | | |-- CurrentUserEntity.dart
43+ | | | |-- notifications.dart
44+ | | | '-- picture.dart
45+ | | |-- ExpensesEntity
46+ | | | |-- ExpensesEntity.dart
47+ | | | |-- category.dart
48+ | | | |-- comments.dart
49+ | | | | (6 more...)
50+ | | | |-- updated_by.dart
51+ | | | |-- user.dart
52+ | | | '-- users.dart
53+ | | |-- FriendsEntity
54+ | | | |-- FriendsEntity.dart
55+ | | | |-- balance.dart
56+ | | | |-- friends.dart
57+ | | | |-- groups.dart
58+ | | | '-- picture.dart
59+ | | |-- GroupsEntity
60+ | | | |-- GroupsEntity.dart
61+ | | | |-- avatar.dart
62+ | | | |-- balance.dart
63+ | | | |-- cover_photo.dart
64+ | | | |-- groups.dart
65+ | | | |-- members.dart
66+ | | | |-- original_debts.dart
67+ | | | |-- picture.dart
68+ | | | '-- simplified_debts.dart
69+ | | |-- NotificationsEntity
70+ | | | |-- NotificationsEntity.dart
71+ | | | |-- notifications.dart
72+ | | | '-- source.dart
73+ | | |-- PostExpense
74+ | | | |-- PostExpense.dart
75+ | | | |-- category.dart
76+ | | | |-- comments.dart
77+ | | | | (7 more...)
78+ | | | |-- updated_by.dart
79+ | | | |-- user.dart
80+ | | | '-- users.dart
81+ | | |-- PostResponse
82+ | | | |-- post_response.dart
83+ | | | '-- post_response.g.dart
84+ | | '-- SingleUserEntity
85+ | | |-- SingleUserEntity.dart
86+ | | '-- picture.dart
3787| '-- helper
3888| '-- TokensHelper.dart
3989'-- pubspec.yaml
4090
41-
42-
4391```
4492#### Usage
4593- Import the package
4694``` yaml
4795dependencies :
48- splitwise_api : ^2.0.0
96+ splitwise_api : ^2.0.1
4997` ` `
5098- Import in the file
5199
0 commit comments