copyWithWrapped method

WebApiControllersSharedControlsAppImageAppImageControllerAddAsyncRequest copyWithWrapped({
  1. Wrapped<String?>? uniqueid1,
  2. Wrapped<String?>? uniqueid2,
  3. Wrapped<String?>? uniqueid3,
  4. Wrapped<int?>? uniqueId1Int,
  5. Wrapped<String?>? description,
  6. Wrapped<String?>? extension,
  7. Wrapped<String?>? recType,
  8. Wrapped<String?>? imageDataUrl,
})

Implementation

WebApiControllersSharedControlsAppImageAppImageControllerAddAsyncRequest
copyWithWrapped({
  Wrapped<String?>? uniqueid1,
  Wrapped<String?>? uniqueid2,
  Wrapped<String?>? uniqueid3,
  Wrapped<int?>? uniqueId1Int,
  Wrapped<String?>? description,
  Wrapped<String?>? extension,
  Wrapped<String?>? recType,
  Wrapped<String?>? imageDataUrl,
}) {
  return WebApiControllersSharedControlsAppImageAppImageControllerAddAsyncRequest(
    uniqueid1: (uniqueid1 != null ? uniqueid1.value : this.uniqueid1),
    uniqueid2: (uniqueid2 != null ? uniqueid2.value : this.uniqueid2),
    uniqueid3: (uniqueid3 != null ? uniqueid3.value : this.uniqueid3),
    uniqueId1Int: (uniqueId1Int != null
        ? uniqueId1Int.value
        : this.uniqueId1Int),
    description: (description != null ? description.value : this.description),
    extension: (extension != null ? extension.value : this.extension),
    recType: (recType != null ? recType.value : this.recType),
    imageDataUrl: (imageDataUrl != null
        ? imageDataUrl.value
        : this.imageDataUrl),
  );
}