An open API service indexing awesome lists of open source software.

https://github.com/stablekernel/open-api-dart

OpenAPI (Swagger) data structures in Dart
https://github.com/stablekernel/open-api-dart

Last synced: 3 months ago
JSON representation

OpenAPI (Swagger) data structures in Dart

Awesome Lists containing this project

README

          

# open_api_dart

Reads and writes OpenAPI (Swagger) specifications.

Example
---

```dart
final file = new File("test/specs/kubernetes.json");
final contents = await file.readAsString();
final doc = new APIDocument.fromJSON(contents);

final output = JSON.encode(doc.asMap());
```