copyWith method
Implementation
TextElement copyWith({
String? text,
Trapezoid? trapezoid,
}) {
return TextElement(
text: text ?? this.text,
trapezoid: trapezoid ?? this.trapezoid,
);
}
TextElement copyWith({
String? text,
Trapezoid? trapezoid,
}) {
return TextElement(
text: text ?? this.text,
trapezoid: trapezoid ?? this.trapezoid,
);
}