copyWith method
Implementation
SubHeaderCell copyWith({
double? width,
String? text,
Color? backgroundColor,
}) {
return SubHeaderCell(
text: text ?? this.text,
span: span,
backgroundColor: backgroundColor ?? this.backgroundColor,
foregroundColor: foregroundColor,
borderColor: borderColor,
width: width ?? this.width,
height: height,
textSize: textSize,
textAlignment: textAlignment,
);
}