FDateFieldStyle.inherit constructor

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

Creates a FDateFieldStyle that inherits its properties.

Implementation

FDateFieldStyle.inherit({
  required FColors colors,
  required FTypography typography,
  required FIcons icons,
  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),
       calendarStyle: .inherit(
         colors: colors,
         typography: typography,
         icons: icons,
         style: style,
         hapticFeedback: hapticFeedback,
         touch: touch,
       ),
     );