copyWith method
Implementation
AssetDevice copyWith(
{String? assetId, String? deviceId, List<String>? tags}) {
return AssetDevice(
assetId: assetId ?? this.assetId,
deviceId: deviceId ?? this.deviceId,
tags: tags ?? this.tags);
}