copyWith method

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

Implementation

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