copyWith method
Implementation
TextOptions copyWith({
String? text,
TextAlign? textAlign,
TextStyle? style
}) {
return TextOptions(
text: text ?? this.text,
textAlign: textAlign ?? this.textAlign,
style: style ?? this.style
);
}