copyWith method

PageBlockPullQuote copyWith({
  1. RichText? text,
  2. RichText? credit,
})

Implementation

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