APIResponse.schema constructor Null safety
Implementation
APIResponse.schema(
this.description,
APISchemaObject schema, {
Iterable<String> contentTypes = const ["application/json"],
this.headers,
}) {
content = contentTypes.fold({}, (prev, elem) {
prev![elem] = APIMediaType(schema: schema);
return prev;
});
}