FlickerDateInput constructor

FlickerDateInput({
  1. Key? key,
  2. DateTime? initialDateValue,
  3. String? labelText,
  4. bool? uppercaseLabelAndHint = true,
  5. ValueChanged<DateTime?>? onDateChanged,
  6. ValueChanged<TimeOfDay>? onTimeOfDayChanged,
  7. FlickerDateMode mode = FlickerDateMode.Date,
  8. bool readonly = false,
  9. TimeOfDay? initialTimeOfDayValue,
})

Implementation

FlickerDateInput({
  Key? key,
  this.initialDateValue,
  this.labelText,
  this.uppercaseLabelAndHint = true,
  this.onDateChanged,
  this.onTimeOfDayChanged,
  this.mode = FlickerDateMode.Date,
  this.readonly = false,
  this.initialTimeOfDayValue,
}) : super(key: key);