copyWith method

WebPageInstantView copyWith({
  1. List<PageBlock>? pageBlocks,
  2. int? viewCount,
  3. int? version,
  4. bool? isRtl,
  5. bool? isFull,
  6. InternalLinkType? feedbackLink,
  7. dynamic extra,
  8. int? clientId,
})

Implementation

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