fallback static method

ZeroTimePickerStyle fallback({
  1. required HourMinuteControlStyle hourMinute,
  2. Color? backgroundColor,
  3. BorderSide? dayPeriodBorderSide,
  4. Color? dayPeriodColor,
  5. OutlinedBorder? dayPeriodShape,
  6. Color? dayPeriodTextColor,
  7. TextStyle? dayPeriodTextStyle,
  8. Color? dialBackgroundColor,
  9. Color? dialHandColor,
  10. Color? dialTextColor,
  11. Color? entryModeIconColor,
  12. TextStyle? helpTextStyle,
  13. ShapeBorder? shape,
  14. 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,
  );
}