copyWith method

  1. @override
PageBlockTable copyWith({
  1. RichText? caption,
  2. List<List<PageBlockTableCell>>? cells,
  3. bool? isBordered,
  4. bool? isStriped,
})
override

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,
    );