FDateFieldStyle.inherit constructor

FDateFieldStyle.inherit({
  1. required FColors colors,
  2. required FTypography typography,
  3. required FStyle style,
})

Creates a FDateFieldStyle that inherits its properties.

Implementation

FDateFieldStyle.inherit({required FColors colors, required FTypography typography, required FStyle style})
  : this(
      textFieldStyle: FTextFieldStyle.inherit(colors: colors, typography: typography, style: style),
      popoverStyle: FPopoverStyle.inherit(colors: colors, style: style),
      calendarStyle: FCalendarStyle.inherit(colors: colors, typography: typography, style: style),
      iconStyle: IconThemeData(color: colors.mutedForeground, size: 18),
    );