copyWith method
StonePrinter
copyWith({
- String? title,
- String? description,
- PrinterType? printerType,
- String? imageBase64,
Implementation
StonePrinter copyWith({
String? title,
String? description,
PrinterType? printerType,
String? imageBase64,
}) {
return StonePrinter(
title: title ?? this.title,
description: description ?? this.description,
printerType: printerType ?? this.printerType,
imageBase64: imageBase64 ?? this.imageBase64,
);
}