copyWith method

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

Implementation

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