copyWith method

  1. @override
PageBlockBlockQuote copyWith({
  1. RichText? text,
  2. RichText? credit,
})
override

Implementation

@override
PageBlockBlockQuote copyWith({
  RichText? text,
  RichText? credit,
}) =>
    PageBlockBlockQuote(
      text: text ?? this.text,
      credit: credit ?? this.credit,
    );