LedgerDatePickerButton constructor

const LedgerDatePickerButton({
  1. Key? key,
  2. DateTime? dateTime,
  3. required String dateDisplayFormat,
  4. required String hintText,
  5. required String labelText,
  6. bool showIcon = true,
  7. required VoidCallback? onTap,
  8. String? validator(
    1. String?
    )?,
  9. AutovalidateMode? autovalidateMode,
})

Implementation

const LedgerDatePickerButton({
  super.key,
  this.dateTime,
  required this.dateDisplayFormat,
  required this.hintText,
  required this.labelText,
  this.showIcon = true,
  required this.onTap,
  this.validator,
  this.autovalidateMode,
});