File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ class Query {
22
22
static search(String attribute, String value) =>
23
23
_addQuery(attribute, 'search', value);
24
24
25
- static String orderAsc(String attribute) => 'orderAsc("$attribute")';
25
+ static String orderAsc(String attribute) => 'orderAsc("$attribute")';
26
26
27
- static String orderDesc(String attribute) => 'orderDesc("$attribute")';
27
+ static String orderDesc(String attribute) => 'orderDesc("$attribute")';
28
28
29
- static String cursorBefore(String id) => 'cursorBefore("$id")';
29
+ static String cursorBefore(String id) => 'cursorBefore("$id")';
30
30
31
- static String cursorAfter(String id) => 'cursorAfter("$id")';
31
+ static String cursorAfter(String id) => 'cursorAfter("$id")';
32
32
33
- static String limit(int limit) => 'limit($limit)';
33
+ static String limit(int limit) => 'limit($limit)';
34
34
35
- static String offset(int offset) => 'offset($offset)';
35
+ static String offset(int offset) => 'offset($offset)';
36
36
37
37
static String _addQuery(String attribute, String method, dynamic value) => (value
38
38
is List)
Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ class Query {
22
22
static search(String attribute, String value) =>
23
23
_addQuery(attribute, 'search', value);
24
24
25
- static String orderAsc(String attribute) => 'orderAsc("$attribute")';
25
+ static String orderAsc(String attribute) => 'orderAsc("$attribute")';
26
26
27
- static String orderDesc(String attribute) => 'orderDesc("$attribute")';
27
+ static String orderDesc(String attribute) => 'orderDesc("$attribute")';
28
28
29
- static String cursorBefore(String id) => 'cursorBefore("$id")';
29
+ static String cursorBefore(String id) => 'cursorBefore("$id")';
30
30
31
- static String cursorAfter(String id) => 'cursorAfter("$id")';
31
+ static String cursorAfter(String id) => 'cursorAfter("$id")';
32
32
33
- static String limit(int limit) => 'limit($limit)';
33
+ static String limit(int limit) => 'limit($limit)';
34
34
35
- static String offset(int offset) => 'offset($offset)';
35
+ static String offset(int offset) => 'offset($offset)';
36
36
37
37
static String _addQuery(String attribute, String method, dynamic value) => (value
38
38
is List)
You can’t perform that action at this time.
0 commit comments