copyWith method
Implementation
KoiTextColumn copyWith({
String? text,
int? ratio,
KoiTextAlign? align,
bool? bold,
}) {
return KoiTextColumn(
text: text ?? this.text,
ratio: ratio ?? this.ratio,
align: align ?? this.align,
bold: bold ?? this.bold,
);
}