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