copyWith method
Implementation
BorderSide copyWith({PdfColor? color, double? width, BorderStyle? style}) =>
BorderSide(
color: color ?? this.color,
width: width ?? this.width,
style: style ?? this.style,
);
BorderSide copyWith({PdfColor? color, double? width, BorderStyle? style}) =>
BorderSide(
color: color ?? this.color,
width: width ?? this.width,
style: style ?? this.style,
);