copyWith method

WebPageInstantView copyWith({
  1. List<PageBlock>? blocks,
  2. int? viewCount,
  3. int? version,
  4. bool? isRtl,
  5. bool? isFull,
  6. InternalLinkType? feedbackLink,
})

Implementation

WebPageInstantView copyWith({
  List<PageBlock>? blocks,
  int? viewCount,
  int? version,
  bool? isRtl,
  bool? isFull,
  InternalLinkType? feedbackLink,
}) => WebPageInstantView(
  blocks: blocks ?? this.blocks,
  viewCount: viewCount ?? this.viewCount,
  version: version ?? this.version,
  isRtl: isRtl ?? this.isRtl,
  isFull: isFull ?? this.isFull,
  feedbackLink: feedbackLink ?? this.feedbackLink,
);