copyWith method

SunmiText copyWith({
  1. String? text,
  2. SunmiTextStyle? style,
})

Implementation

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