copyWith method
Returns a copy of this FAlertStyles with the given properties replaced.
Implementation
@useResult
FAlertStyles copyWith({FAlertStyle? primary, FAlertStyle? destructive}) =>
FAlertStyles(primary: primary ?? this.primary, destructive: destructive ?? this.destructive);