AFieldDate constructor

const AFieldDate({
  1. Key? key,
  2. bool readOnly = false,
  3. bool required = false,
  4. String? label = "Data",
  5. String identifier = 'date',
  6. DateTime? initialValue,
  7. void onChanged(
    1. DateTime?
    )?,
  8. int? flexible,
  9. bool expanded = false,
  10. EdgeInsets? margin,
  11. bool linkToAForm = true,
  12. VoidCallback? onSubmit,
})

Implementation

const AFieldDate({
  super.key,
  super.readOnly,
  super.required,
  super.label = "Data",
  super.identifier = 'date',
  super.initialValue,
  super.onChanged,
  super.flexible,
  super.expanded,
  super.margin,
  super.linkToAForm,
  super.onSubmit,
});