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