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