Skip to content

Commit 37d3605

Browse files
committed
run flutter format
1 parent 7fc6078 commit 37d3605

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

example/test/widget_test.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@
55
// gestures. You can also use WidgetTester to find child widgets in the widget
66
// tree, read text, and verify that the values of widget properties are correct.
77

8-
void main() {
9-
10-
}
8+
void main() {}

lib/models/response/continent.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ class Continents {
3131
Continents.fromJson(Map<String, dynamic> json) {
3232
this.code = json["code"];
3333
this.name = json["name"];
34-
this.countries = List<Country>.from(json["countries"].map((x) => Country.fromJson(x)));
34+
this.countries =
35+
List<Country>.from(json["countries"].map((x) => Country.fromJson(x)));
3536
this.links = Links.fromJson(json["_links"]);
3637
}
3738

test/woosignal_test.dart

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
2-
void main() {
3-
4-
}
1+
void main() {}

0 commit comments

Comments
 (0)