ArcaneTimePicker constructor

const ArcaneTimePicker({
  1. TimeOfDay? value,
  2. void onChanged(
    1. TimeOfDay?
    )?,
  3. String? label,
  4. String? placeholder,
  5. bool use24Hour = false,
  6. int minuteInterval = 1,
  7. bool disabled = false,
  8. String? error,
  9. bool clearable = true,
  10. bool showSeconds = false,
  11. ComponentSize size = ComponentSize.md,
  12. Key? key,
})

Implementation

const ArcaneTimePicker({
  this.value,
  this.onChanged,
  this.label,
  this.placeholder,
  this.use24Hour = false,
  this.minuteInterval = 1,
  this.disabled = false,
  this.error,
  this.clearable = true,
  this.showSeconds = false,
  this.size = ComponentSize.md,
  super.key,
});