FDateFieldStyle.inherit constructor
FDateFieldStyle.inherit({
- required FColors colors,
- required FTypography typography,
- required FStyle style,
- required bool touch,
Creates a FDateFieldStyle that inherits its properties.
Implementation
FDateFieldStyle.inherit({
required FColors colors,
required FTypography typography,
required FStyle style,
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, style: style, touch: touch),
);