Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 282 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 282 Bytes

open_api_dart

Reads and writes OpenAPI (Swagger) specifications.

Example

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());