copyWith method
Implementation
@override
PageBlockTable copyWith({
RichText? caption,
List<List<PageBlockTableCell>>? cells,
bool? isBordered,
bool? isStriped,
}) =>
PageBlockTable(
caption: caption ?? this.caption,
cells: cells ?? this.cells,
isBordered: isBordered ?? this.isBordered,
isStriped: isStriped ?? this.isStriped,
);