copyWithWrapped method
Implementation
AssetDevice copyWithWrapped(
{Wrapped<String>? assetId,
Wrapped<String>? deviceId,
Wrapped<List<String>?>? tags}) {
return AssetDevice(
assetId: (assetId != null ? assetId.value : this.assetId),
deviceId: (deviceId != null ? deviceId.value : this.deviceId),
tags: (tags != null ? tags.value : this.tags));
}