CInputDate constructor

const CInputDate({
  1. Key? key,
  2. required String label,
  3. IconData? icon,
  4. void onPickDate(
    1. DateTime date
    )?,
  5. String formatDate(
    1. DateTime date
    )?,
  6. DateTime? initialDate,
})

Implementation

const CInputDate({
  super.key,
  required this.label,
  this.icon,
  this.onPickDate,
  this.formatDate,
  this.initialDate,
});