OwlnextTime constructor

const OwlnextTime({
  1. Key? key,
  2. GlobalKey<FormFieldState>? formFieldKey,
  3. required TimeOfDay? time,
  4. bool mandatory = true,
  5. bool enabled = true,
  6. required void onChanged(
    1. TimeOfDay? time
    ),
  7. Widget? globalLabel,
  8. String? timeOfDayLabel,
  9. TimeDictionary? dictionnary,
  10. Color? iconColor,
})

Implementation

const OwlnextTime({
  super.key,
  this.formFieldKey,
  required this.time,
  this.mandatory = true,
  this.enabled = true,
  required this.onChanged,
  this.globalLabel,
  this.timeOfDayLabel,
  this.dictionnary,
  this.iconColor,
});