TimePickerThemeModifier constructor

const TimePickerThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required TimePickerThemeData data,
})

Creates a time picker theme that controls the configurations for time pickers displayed in its widget subtree.

Implementation

const TimePickerThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});