Skip to content

Commit b21a177

Browse files
committed
fix(annotation): fixed formatting
1 parent c5e1bdf commit b21a177

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ class _MyHomePageState extends State<MyHomePage> {
124124
), // This trailing comma makes auto-formatting nicer for build methods.
125125
);
126126
}
127-
}
127+
}

openapi-generator-annotations/lib/src/openapi_generator_annotations_base.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ class InputSpec {
153153

154154
Map<String, dynamic> toJsonMap() => {'path': path};
155155

156-
InputSpec.fromMap(Map<String, dynamic> map)
157-
: this(path: map['path']);
156+
InputSpec.fromMap(Map<String, dynamic> map) : this(path: map['path']);
158157
}
159158

160159
/// Provides the location for the remote specification.

0 commit comments

Comments
 (0)