copyWith method
LinkStyle
copyWith({
- Color? color,
- Color? hoverColor,
- TextDecoration? decoration,
- double? decorationThickness,
- FontWeight? fontWeight,
A copy with the given fields replaced.
Implementation
LinkStyle copyWith({
Color? color,
Color? hoverColor,
TextDecoration? decoration,
double? decorationThickness,
FontWeight? fontWeight,
}) {
return LinkStyle(
color: color ?? this.color,
hoverColor: hoverColor ?? this.hoverColor,
decoration: decoration ?? this.decoration,
decorationThickness: decorationThickness ?? this.decorationThickness,
fontWeight: fontWeight ?? this.fontWeight,
);
}