fallback static method
Implementation
static ZeroSnackbarStyleSet fallback({
TextStyle? textStyle,
TextStyle? titleStyle,
Color? snackbarBackgroundColor,
Color? defaultDangerColor,
Color? defaultWarningColor,
Color? defaultInfoColor,
Color? defaultSuccessColor,
}) {
return ZeroSnackbarStyleSet(
snackbar: ZeroSnackbarStyle.fallback(
textStyle: textStyle,
backgroundColor: snackbarBackgroundColor,
),
alert: ZeroSnackbarAlertStyle.fallback(
subtitleStyle: textStyle,
titleStyle: titleStyle,
defaultDangerColor: defaultDangerColor,
defaultWarningColor: defaultWarningColor,
defaultInfoColor: defaultInfoColor,
defaultSuccessColor: defaultSuccessColor,
),
);
}