Properties constructor

Properties({
  1. required String key,
  2. required JsonSchemaType type,
  3. required String title,
  4. required bool readOnly,
  5. required bool isRequired,
  6. List<RawBuilder>? raw,
  7. String? description,
  8. List<String>? fields,
  9. ValidationSchema? validations,
  10. int? maxLine,
  11. dynamic answer,
})

Implementation

Properties({
  required this.key,
  required this.type,
  required this.title,
  required this.readOnly,
  required this.isRequired,
  this.raw,
  this.description,
  this.fields,
  this.validations,
  this.maxLine,
  this.answer,
});