AutoProperty constructor

AutoProperty({
  1. required String field,
  2. String? title,
  3. required AutoPropertyType type,
  4. String? validator(
    1. dynamic
    )?,
  5. Widget? widget,
  6. List<String>? options,
  7. String? hint,
})

Implementation

AutoProperty({
  required this.field,
  this.title,
  required this.type,
  this.validator,
  this.widget,
  this.options,
  this.hint,
});