copyWithWrapped method

NotificationTagUpdateV3Body copyWithWrapped({
  1. Wrapped<String?>? deviceId,
  2. Wrapped<TagOperationDTO?>? operation,
  3. Wrapped<List<String>?>? tags,
})

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));
}