copyWith method

BorderSide copyWith({
  1. PdfColor? color,
  2. double? width,
  3. BorderStyle? style,
})

Implementation

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