copyWith method
Implementation
ClayTextTheme copyWith({
Color? color,
Color? parentColor,
Color? textColor,
TextStyle? style,
double? spread,
int? depth,
double? size,
bool? emboss,
}) {
return ClayTextTheme(
color: color ?? this.color,
parentColor: parentColor ?? this.parentColor,
textColor: textColor ?? this.textColor,
style: style ?? this.style,
spread: spread ?? this.spread,
depth: depth ?? this.depth,
size: size ?? this.size,
emboss: emboss ?? this.emboss,
);
}