copyWith method
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,
);