fallback static method
ZeroDatePickerStyle
fallback({
- Color? headerBackgroundColor,
- Color? pickerBackgroundColor,
- Color? entryModeIconColor,
- TextStyle? helpTextStyle,
- TextStyle? dateTextStyle,
- ShapeBorder? shape,
- ZeroTextfieldStyle? textfieldStyle,
- double? elevation,
- EdgeInsets? insetPadding,
- 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);
}