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