ArcaneTimePicker constructor

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

Implementation

const ArcaneTimePicker({
  this.id,
  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,
});