Schema constructor
Schema({
- Schema? additionalProperties,
- List<
Schema> ? anyOf, - Object? default_,
- Map<
String, Schema> ? defs, - String? description,
- List<
String> ? enum_, - Schema? items,
- String? maxItems,
- double? maximum,
- String? minItems,
- double? minimum,
- bool? nullable,
- List<
Schema> ? prefixItems, - Map<
String, Schema> ? properties, - String? ref,
- List<
String> ? required, - String? title,
- String? type,
- bool? uniqueItems,
Implementation
Schema({
this.additionalProperties,
this.anyOf,
this.default_,
this.defs,
this.description,
this.enum_,
this.items,
this.maxItems,
this.maximum,
this.minItems,
this.minimum,
this.nullable,
this.prefixItems,
this.properties,
this.ref,
this.required,
this.title,
this.type,
this.uniqueItems,
});