copyWith method

InputPageBlockSectionHeading copyWith({
  1. RichText? text,
  2. int? size,
})

Implementation

InputPageBlockSectionHeading copyWith({RichText? text, int? size}) =>
    InputPageBlockSectionHeading(
      text: text ?? this.text,
      size: size ?? this.size,
    );