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