ObjectProperty constructor

ObjectProperty({
  1. required List<PropertyNameAndSchema> properties,
  2. dynamic additionalProperties,
  3. String? ref,
  4. required bool nullable,
  5. TPropertyType type = TPropertyType.objectProperty,
  6. required String? format,
  7. dynamic defaultValue,
  8. required List<String> enumValues,
  9. TProperty? items,
})

Implementation

ObjectProperty({
  required this.properties,
  this.additionalProperties,
  this.ref,
  required this.nullable,
  this.type = TPropertyType.objectProperty,
  required this.format,
  this.defaultValue,
  required this.enumValues,
  this.items,
});