copyWith method

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

Implementation

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