copyWith method

ArtemisKioskDevice copyWith({
  1. String? deviceName,
  2. String? status,
  3. int? type,
})

Implementation

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