fallback static method

ZeroDatePickerStyle fallback({
  1. Color? headerBackgroundColor,
  2. Color? pickerBackgroundColor,
  3. Color? entryModeIconColor,
  4. TextStyle? helpTextStyle,
  5. TextStyle? dateTextStyle,
  6. ShapeBorder? shape,
  7. ZeroTextfieldStyle? textfieldStyle,
  8. double? elevation,
  9. EdgeInsets? insetPadding,
  10. ZeroCalendarPickerStyle? calendarStyle,
})

Implementation

static ZeroDatePickerStyle fallback(
    {Color? headerBackgroundColor,
    Color? pickerBackgroundColor,
    Color? entryModeIconColor,
    TextStyle? helpTextStyle,
    TextStyle? dateTextStyle,
    ShapeBorder? shape,
    ZeroTextfieldStyle? textfieldStyle,
    double? elevation,
    EdgeInsets? insetPadding,
    ZeroCalendarPickerStyle? calendarStyle}) {
  return ZeroDatePickerStyle(
      headerBackgroundColor: headerBackgroundColor,
      pickerBackgroundColor: pickerBackgroundColor,
      entryModeIconColor: entryModeIconColor,
      helpTextStyle: helpTextStyle,
      dateTextStyle: dateTextStyle,
      shape: shape,
      textfieldStyle: textfieldStyle,
      elevation: elevation,
      insetPadding: insetPadding,
      calendarStyle: calendarStyle);
}