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