copyWith method

KoiTextColumn copyWith({
  1. String? text,
  2. int? ratio,
  3. KoiTextAlign? align,
  4. bool? bold,
})

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,
  );
}