copyWith method

PrintLabelModel copyWith({
  1. String? text,
  2. num? fontSize,
})

Implementation

PrintLabelModel copyWith({
  String? text,
  num? fontSize,
}) =>
    PrintLabelModel(
      text: text ?? _text,
      fontSize: fontSize ?? _fontSize,
    );