copyWith method
Implementation
ArtemisKioskDevice copyWith({
String? deviceName,
String? status,
int? type,
}) =>
ArtemisKioskDevice(
deviceName: deviceName ?? this.deviceName,
status: status ?? this.status,
type: type ?? this.type,
);