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