copyWith method
- @useResult
- BoxDecoration? decoration,
- EdgeInsets? padding,
- Color? iconColor,
- double? iconSize,
- TextStyle? titleTextStyle,
- TextStyle? subtitleTextStyle,
Returns a copy of this FAlertCustomStyle with the given properties replaced.
Implementation
@useResult
FAlertCustomStyle copyWith({
BoxDecoration? decoration,
EdgeInsets? padding,
Color? iconColor,
double? iconSize,
TextStyle? titleTextStyle,
TextStyle? subtitleTextStyle,
}) =>
FAlertCustomStyle(
decoration: decoration ?? this.decoration,
padding: padding ?? this.padding,
iconColor: iconColor ?? this.iconColor,
iconSize: iconSize ?? this.iconSize,
titleTextStyle: titleTextStyle ?? this.titleTextStyle,
subtitleTextStyle: subtitleTextStyle ?? this.subtitleTextStyle,
);