APIPath constructor
APIPath({
- String? summary,
- String? description,
- List<
APIParameter?> ? parameters, - Map<
String, APIOperation?> ? operations,
Implementation
APIPath({
this.summary,
this.description,
this.parameters,
Map<String, APIOperation?>? operations,
}) : operations = operations ?? {};