copyWith method
Creates a copy of this content style with the given fields replaced.
Implementation
NativeContentStyle copyWith({
Color? titleColor,
double? titleFontSize,
Color? textColor,
double? contentFontSize,
}) {
return NativeContentStyle(
titleColor: titleColor ?? this.titleColor,
titleFontSize: titleFontSize ?? this.titleFontSize,
textColor: textColor ?? this.textColor,
contentFontSize: contentFontSize ?? this.contentFontSize,
);
}