fallback static method
ZeroTimePickerStyle
fallback({
- required HourMinuteControlStyle hourMinute,
- Color? backgroundColor,
- BorderSide? dayPeriodBorderSide,
- Color? dayPeriodColor,
- OutlinedBorder? dayPeriodShape,
- Color? dayPeriodTextColor,
- TextStyle? dayPeriodTextStyle,
- Color? dialBackgroundColor,
- Color? dialHandColor,
- Color? dialTextColor,
- Color? entryModeIconColor,
- TextStyle? helpTextStyle,
- ShapeBorder? shape,
- ZeroTextfieldStyle? textfieldStyle,
Implementation
static ZeroTimePickerStyle fallback({
required HourMinuteControlStyle hourMinute,
Color? backgroundColor,
BorderSide? dayPeriodBorderSide,
Color? dayPeriodColor,
OutlinedBorder? dayPeriodShape,
Color? dayPeriodTextColor,
TextStyle? dayPeriodTextStyle,
Color? dialBackgroundColor,
Color? dialHandColor,
Color? dialTextColor,
Color? entryModeIconColor,
TextStyle? helpTextStyle,
ShapeBorder? shape,
ZeroTextfieldStyle? textfieldStyle,
}) {
return ZeroTimePickerStyle(
backgroundColor: backgroundColor,
hourMinute: hourMinute,
dayPeriodBorderSide: dayPeriodBorderSide,
dayPeriodColor: dayPeriodColor,
dayPeriodShape: dayPeriodShape,
dayPeriodTextColor: dayPeriodTextColor,
dayPeriodTextStyle: dayPeriodTextStyle,
dialBackgroundColor: dialBackgroundColor,
dialHandColor: dialHandColor,
dialTextColor: dialTextColor,
entryModeIconColor: entryModeIconColor,
helpTextStyle: helpTextStyle,
shape: shape,
textfieldStyle: textfieldStyle,
);
}