copyWith method
Implementation
CPDFUnderlineAttr copyWith({
Color? color,
double? alpha,
}) {
return CPDFUnderlineAttr(
color: color ?? this.color,
alpha: alpha ?? this.alpha,
);
}
CPDFUnderlineAttr copyWith({
Color? color,
double? alpha,
}) {
return CPDFUnderlineAttr(
color: color ?? this.color,
alpha: alpha ?? this.alpha,
);
}