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