FTimeFieldStyle.inherit constructor

FTimeFieldStyle.inherit({
  1. required FColors colors,
  2. required FTypography typography,
  3. required FStyle style,
  4. required FHapticFeedback hapticFeedback,
  5. required bool touch,
})

Creates a FTimeFieldStyle that inherits its properties.

Implementation

FTimeFieldStyle.inherit({
  required FColors colors,
  required FTypography typography,
  required FStyle style,
  required FHapticFeedback hapticFeedback,
  required bool touch,
}) : this(
       fieldStyles: .inherit(colors: colors, typography: typography, style: style, touch: touch),
       popoverStyle: .inherit(colors: colors, style: style),
       pickerStyle: .inherit(
         colors: colors,
         typography: typography,
         style: style,
         hapticFeedback: hapticFeedback,
         touch: touch,
       ),
     );