copyWith method

PageBlockSlideshow copyWith({
  1. List<PageBlock>? blocks,
  2. PageBlockCaption? caption,
})

Implementation

PageBlockSlideshow copyWith({
  List<PageBlock>? blocks,
  PageBlockCaption? caption,
}) => PageBlockSlideshow(
  blocks: blocks ?? this.blocks,
  caption: caption ?? this.caption,
);