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