SchemaOpenApi constructor

const SchemaOpenApi({
  1. String? title,
  2. String? description,
  3. Object? example,
  4. TypeOpenApi? type,
  5. FormatOpenApi? format,
  6. List<Object>? enum$,
  7. SchemaOpenApi? items,
  8. Map<String, SchemaOpenApi>? properties,
  9. SchemaOpenApi? additionalProperties,
  10. List<SchemaOpenApi>? allOf,
  11. List<String>? required,
  12. bool nullable = false,
  13. Object? default$,
  14. Object? $original,
  15. bool? uniqueItems,
})

Implementation

const SchemaOpenApi({
  this.title,
  this.description,
  this.example,
  this.type,
  this.format,
  this.enum$,
  this.items,
  this.properties,
  this.additionalProperties,
  this.allOf,
  this.required,
  this.nullable = false,
  this.default$,
  this.$original,
  this.uniqueItems,
});