Skip to content

Commit 1ab497d

Browse files
committed
dart formatting
1 parent 987a8f7 commit 1ab497d

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

templates/dart/lib/query.dart.twig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ class Query {
2222
static search(String attribute, String value) =>
2323
_addQuery(attribute, 'search', value);
2424

25-
static String orderAsc(String attribute) => 'orderAsc("$attribute")';
25+
static String orderAsc(String attribute) => 'orderAsc("$attribute")';
2626

27-
static String orderDesc(String attribute) => 'orderDesc("$attribute")';
27+
static String orderDesc(String attribute) => 'orderDesc("$attribute")';
2828

29-
static String cursorBefore(String id) => 'cursorBefore("$id")';
29+
static String cursorBefore(String id) => 'cursorBefore("$id")';
3030

31-
static String cursorAfter(String id) => 'cursorAfter("$id")';
31+
static String cursorAfter(String id) => 'cursorAfter("$id")';
3232

33-
static String limit(int limit) => 'limit($limit)';
33+
static String limit(int limit) => 'limit($limit)';
3434

35-
static String offset(int offset) => 'offset($offset)';
35+
static String offset(int offset) => 'offset($offset)';
3636

3737
static String _addQuery(String attribute, String method, dynamic value) => (value
3838
is List)

templates/flutter/lib/query.dart.twig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ class Query {
2222
static search(String attribute, String value) =>
2323
_addQuery(attribute, 'search', value);
2424

25-
static String orderAsc(String attribute) => 'orderAsc("$attribute")';
25+
static String orderAsc(String attribute) => 'orderAsc("$attribute")';
2626

27-
static String orderDesc(String attribute) => 'orderDesc("$attribute")';
27+
static String orderDesc(String attribute) => 'orderDesc("$attribute")';
2828

29-
static String cursorBefore(String id) => 'cursorBefore("$id")';
29+
static String cursorBefore(String id) => 'cursorBefore("$id")';
3030

31-
static String cursorAfter(String id) => 'cursorAfter("$id")';
31+
static String cursorAfter(String id) => 'cursorAfter("$id")';
3232

33-
static String limit(int limit) => 'limit($limit)';
33+
static String limit(int limit) => 'limit($limit)';
3434

35-
static String offset(int offset) => 'offset($offset)';
35+
static String offset(int offset) => 'offset($offset)';
3636

3737
static String _addQuery(String attribute, String method, dynamic value) => (value
3838
is List)

0 commit comments

Comments
 (0)