FDateFieldStyle.inherit constructor
FDateFieldStyle.inherit({
- required FColors colors,
- required FTypography typography,
- 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),
);