copyWith method

PageBlockBlockQuote copyWith({
  1. List<PageBlock>? blocks,
  2. RichText? credit,
})

Implementation

PageBlockBlockQuote copyWith({List<PageBlock>? blocks, RichText? credit}) =>
    PageBlockBlockQuote(
      blocks: blocks ?? this.blocks,
      credit: credit ?? this.credit,
    );