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