fallback static method
ZeroAlertDialogStyle
fallback({
- TextStyle? titleTextStyle,
- TextStyle? contentTextStyle,
- Color? barrierColor,
- EdgeInsetsGeometry? actionsPadding,
- EdgeInsetsGeometry? titlePadding,
- EdgeInsetsGeometry? contentPadding,
- EdgeInsetsGeometry? iconPadding,
- double elevation = 4,
- Color? backgroundColor,
- Color? shadowColor,
- Color? iconColor,
- AlignmentGeometry? alignment,
- ShapeBorder? shape,
Implementation
static ZeroAlertDialogStyle fallback({
TextStyle? titleTextStyle,
TextStyle? contentTextStyle,
Color? barrierColor,
EdgeInsetsGeometry? actionsPadding,
EdgeInsetsGeometry? titlePadding,
EdgeInsetsGeometry? contentPadding,
EdgeInsetsGeometry? iconPadding,
double elevation = 4,
Color? backgroundColor,
Color? shadowColor,
Color? iconColor,
AlignmentGeometry? alignment,
ShapeBorder? shape,
}) =>
ZeroAlertDialogStyle(
titleTextStyle: titleTextStyle,
contentTextStyle: contentTextStyle,
barrierColor: barrierColor ?? Colors.black54,
actionsPadding: actionsPadding ??
const EdgeInsets.only(bottom: 16, right: 16, left: 16),
titlePadding: titlePadding,
contentPadding: contentPadding,
iconPadding: iconPadding,
elevation: elevation,
backgroundColor: backgroundColor,
shadowColor: shadowColor,
iconColor: iconColor,
alignment: alignment,
shape: shape,
);