copyWith method

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

Implementation

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