You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+69-10Lines changed: 69 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,15 @@
4
4
5
5
This codebase houses the dart/flutter implementations of the openapi client sdk code generation libraries.
6
6
7
+
## TOC
8
+
9
+
-[Introduction](#introduction)
10
+
-[Usage](#usage)
11
+
-[NextGen](#next-generation)
12
+
-[Features & Bugs](#features-and-bugs)
13
+
14
+
## Introduction
15
+
7
16
With this project, you can generate openapi client sdk libraries for your openapi specification right in your
8
17
flutter/dart projects. (see example)
9
18
@@ -17,37 +26,42 @@ This repo contains the following dart libraries
17
26
| openapi-generator-annotations | Annotations for annotating dart class with instructions for generating openapi sdk [see here for usage](https://pub.dev/packages/openapi_generator_annotations)|[](https://pub.dev/packages/openapi_generator)|
18
27
| openapi-generator-cli | Cli code openapi sdk generator for dart [see here for usage](https://pub.dev/packages/openapi_generator_cli)|[](https://pub.dev/packages/openapi_generator_cli)|
19
28
20
-
21
-
22
29
## Usage
23
30
24
-
Include [openapi-generator-annotations](https://pub.dev/packages/openapi_generator_annotations) as a dependency in the dependencies section of your pubspec.yaml file :
31
+
Include [openapi-generator-annotations](https://pub.dev/packages/openapi_generator_annotations) as a dependency in the
32
+
dependencies section of your pubspec.yaml file :
25
33
26
34
```yaml
27
35
dependencies:
28
36
openapi_generator_annotations: ^[latest-version]
29
37
```
30
-
For testing out the beta features in openapi generator, use the beta branch like below. This is not recommended for production builds
38
+
39
+
For testing out the beta features in openapi generator, use the beta branch like below. This is not recommended for
0 commit comments