copyWith method

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

Implementation

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