AutoDateField constructor

AutoDateField({
  1. Key? key,
  2. required String id,
  3. required String label,
  4. DateTime? startDate,
  5. DateTime? endDate,
  6. bool enabled = true,
  7. bool hidden = false,
  8. List<FieldValidation> validations = const [],
  9. List<FieldTrigger> triggers = const [],
  10. String initValue = "",
})

Implementation

AutoDateField({
  super.key,
  required super.id,
  required super.label,
  this.startDate,
  this.endDate,
  super.enabled = true,
  super.hidden = false,
  super.validations = const [],
  super.triggers = const [],
  super.initValue,
});