copyWith method
Implementation
RichTextIcon copyWith({Document? document, int? width, int? height}) =>
RichTextIcon(
document: document ?? this.document,
width: width ?? this.width,
height: height ?? this.height,
);
RichTextIcon copyWith({Document? document, int? width, int? height}) =>
RichTextIcon(
document: document ?? this.document,
width: width ?? this.width,
height: height ?? this.height,
);