copyWith method
Implementation
EpsonPrinterModel copyWith(
{required String address,
String? type,
String? model,
String? series}) =>
EpsonPrinterModel(
address: address,
type: type ?? this.type,
model: model ?? this.model,
series: series ?? this.series);