copyWith method
ZeroAlertDialogStyle
copyWith({
- TextStyle? titleTextStyle,
- TextStyle? contentTextStyle,
- Color? barrierColor,
- EdgeInsetsGeometry? actionsPadding,
- EdgeInsetsGeometry? titlePadding,
- EdgeInsetsGeometry? contentPadding,
- EdgeInsetsGeometry? iconPadding,
- double? elevation,
- Color? backgroundColor,
- Color? shadowColor,
- Color? iconColor,
- AlignmentGeometry? alignment,
- ShapeBorder? shape,
Implementation
ZeroAlertDialogStyle copyWith({
TextStyle? titleTextStyle,
TextStyle? contentTextStyle,
Color? barrierColor,
EdgeInsetsGeometry? actionsPadding,
EdgeInsetsGeometry? titlePadding,
EdgeInsetsGeometry? contentPadding,
EdgeInsetsGeometry? iconPadding,
double? elevation,
Color? backgroundColor,
Color? shadowColor,
Color? iconColor,
AlignmentGeometry? alignment,
ShapeBorder? shape,
}) =>
ZeroAlertDialogStyle(
titleTextStyle: titleTextStyle ?? this.titleTextStyle,
contentTextStyle: contentTextStyle ?? this.contentTextStyle,
barrierColor: barrierColor ?? this.barrierColor,
actionsPadding: actionsPadding ?? this.actionsPadding,
titlePadding: titlePadding ?? this.titlePadding,
contentPadding: contentPadding ?? this.contentPadding,
iconPadding: iconPadding ?? this.iconPadding,
elevation: elevation ?? this.elevation,
backgroundColor: backgroundColor ?? this.backgroundColor,
shadowColor: shadowColor ?? this.shadowColor,
iconColor: iconColor ?? this.iconColor,
alignment: alignment ?? this.alignment,
shape: shape ?? this.shape,
);