copyWith method
Returns a copy of this FCardStyle with the given properties replaced.
Implementation
@useResult
FCardStyle copyWith({
BoxDecoration? decoration,
FCardContentStyle? contentStyle,
}) =>
FCardStyle(
decoration: decoration ?? this.decoration,
contentStyle: contentStyle ?? this.contentStyle,
);