File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ class ApiClient {
146146 }
147147
148148 /// Invoke HTTP request
149- /// We don't use a Map<String, String> for queryParams.
149+ /// We don't use a ` Map<String, String>` for queryParams.
150150 /// If collectionFormat is 'multi' a key might appear multiple times.
151151 Future <Http .Response > invokeAPI (
152152 String path,
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ class CodeLocation {
66
77 CodeLocation ._internal (this ._value);
88
9- // ignore: non_constant_identifier_names
9+ // ignore: non_constant_identifier_names, public_member_api_docs
1010 static final CodeLocation Below = CodeLocation ._internal ("Below" );
11- // ignore: non_constant_identifier_names
11+ // ignore: non_constant_identifier_names, public_member_api_docs
1212 static final CodeLocation Above = CodeLocation ._internal ("Above" );
13- // ignore: non_constant_identifier_names
13+ // ignore: non_constant_identifier_names, public_member_api_docs
1414 static final CodeLocation None = CodeLocation ._internal ("None" );
1515
1616 /// Creates a CodeLocation instance from a JSON representation.
You can’t perform that action at this time.
0 commit comments