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