Skip to content

Commit

Permalink
fix(annotation): fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gibahjoe committed Jan 16, 2024
1 parent c5e1bdf commit b21a177
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ class _MyHomePageState extends State<MyHomePage> {
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@ class InputSpec {

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

InputSpec.fromMap(Map<String, dynamic> map)
: this(path: map['path']);
InputSpec.fromMap(Map<String, dynamic> map) : this(path: map['path']);
}

/// Provides the location for the remote specification.
Expand Down

0 comments on commit b21a177

Please sign in to comment.