FTimeFieldStyle.inherit constructor
FTimeFieldStyle.inherit({
- required FColors colors,
- required FTypography typography,
- required FStyle style,
Creates a FTimeFieldStyle that inherits its properties.
Implementation
FTimeFieldStyle.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),
pickerStyle: FTimePickerStyle.inherit(colors: colors, typography: typography, style: style),
iconStyle: IconThemeData(color: colors.mutedForeground, size: 18, weight: 100),
);