copyWith method
Implementation
@override
PageBlockCollage copyWith({
List<PageBlock>? pageBlocks,
PageBlockCaption? caption,
}) =>
PageBlockCollage(
pageBlocks: pageBlocks ?? this.pageBlocks,
caption: caption ?? this.caption,
);