docs/generators
dart-dio.md +1 -11
dart-jaguar.md +1 -11
dart.md +1 -11
modules/openapi-generator/src
main/java/org/…/codegen/languages
DartClientCodegen.java +40 -22
DartDioClientCodegen.java +25 -31
test/java/org/openapitools/codegen
dart
DartModelTest.java +6 -1
dartdio
DartDioModelTest.java +29 -2
samples/openapi3/client/petstore
dart-dio/petstore_client_lib_fake
.openapi-generator
FILES +6 -4
doc
AnotherFakeApi.md +5 -5
FakeApi.md +5 -5
FakeClassnameTags123Api.md +5 -5
FileSchemaTestClass.md +2 -2
ModelClient.md +1 -1
ModelFile.md +1 -1
ModelList.md +15 -0
lib
api
another_fake_api.dart +9 -9
fake_api.dart +9 -9
fake_classname_tags123_api.dart +9 -9
model
file_schema_test_class.dart +3 -3
model_client.dart +18 -0
model_file.dart +5 -5
model_list.dart +18 -0
serializers.dart +15 -10
test
model_client_test.dart +4 -4
model_file_test.dart +4 -4
model_list_test.dart +17 -0
README.md +5 -4
dart2
petstore_client_lib/doc
InlineObject1.md +1 -1
petstore_client_lib_fake
.openapi-generator
FILES +6 -4
doc
AnotherFakeApi.md +5 -5
FakeApi.md +5 -5
FakeClassnameTags123Api.md +5 -5
FileSchemaTestClass.md +2 -2
FormatTest.md +1 -1
InlineObject1.md +1 -1
InlineObject3.md +1 -1
InlineObject5.md +1 -1
ModelClient.md +1 -1
ModelFile.md +1 -1
ModelList.md +15 -0
lib
api
another_fake_api.dart +9 -9
fake_api.dart +9 -9
fake_classname_tags123_api.dart +9 -9
model
file_schema_test_class.dart +4 -4
model_client.dart +71 -0
model_file.dart +72 -0
model_list.dart +71 -0
api.dart +3 -2
api_client.dart +6 -4
test
model_client_test.dart +3 -3
model_file_test.dart +3 -3
model_list_test.dart +17 -0
README.md +5 -4
+ 1
- 11
@@ -33,19 +33,8 @@ These options may be applied as additional-properties (cli) or configOptions (pl
@@ -62,6 +51,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
+ 1
- 11
@@ -30,17 +30,6 @@ These options may be applied as additional-properties (cli) or configOptions (pl
@@ -57,6 +46,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
+ 1
- 11
@@ -28,17 +28,6 @@ These options may be applied as additional-properties (cli) or configOptions (pl
@@ -55,6 +44,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
+ 40
- 22
@@ -73,6 +73,10 @@ public class DartClientCodegen extends DefaultCodegen {
@@ -131,7 +135,8 @@ public class DartClientCodegen extends DefaultCodegen {
@@ -155,7 +160,7 @@ public class DartClientCodegen extends DefaultCodegen {
@@ -163,21 +168,29 @@ public class DartClientCodegen extends DefaultCodegen {
@@ -306,6 +319,15 @@ public class DartClientCodegen extends DefaultCodegen {
@@ -370,7 +392,7 @@ public class DartClientCodegen extends DefaultCodegen {
@@ -385,10 +407,6 @@ public class DartClientCodegen extends DefaultCodegen {
modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/DartDioClientCodegen.java
+ 25
- 31
@@ -19,14 +19,9 @@ package org.openapitools.codegen.languages;
@@ -35,8 +30,6 @@ import org.slf4j.LoggerFactory;
@@ -50,7 +43,6 @@ public class DartDioClientCodegen extends DartClientCodegen {
@@ -76,6 +68,17 @@ public class DartDioClientCodegen extends DartClientCodegen {
@@ -109,11 +112,6 @@ public class DartDioClientCodegen extends DartClientCodegen {
@@ -237,19 +235,18 @@ public class DartDioClientCodegen extends DartClientCodegen {
@@ -264,13 +261,12 @@ public class DartDioClientCodegen extends DartClientCodegen {
@@ -337,18 +333,16 @@ public class DartDioClientCodegen extends DartClientCodegen {