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