copyWithWrapped method

WebApiModulesMobileQuikAssetQuikAssetFuncQuikAssetInsertImagesRequest copyWithWrapped({
  1. Wrapped<bool?>? isWall,
  2. Wrapped<String?>? inventoryId,
  3. Wrapped<String?>? image,
  4. Wrapped<String?>? imageDesc,
  5. Wrapped<String?>? imageNo,
})

Implementation

WebApiModulesMobileQuikAssetQuikAssetFuncQuikAssetInsertImagesRequest
    copyWithWrapped(
        {Wrapped<bool?>? isWall,
        Wrapped<String?>? inventoryId,
        Wrapped<String?>? image,
        Wrapped<String?>? imageDesc,
        Wrapped<String?>? imageNo}) {
  return WebApiModulesMobileQuikAssetQuikAssetFuncQuikAssetInsertImagesRequest(
      isWall: (isWall != null ? isWall.value : this.isWall),
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      image: (image != null ? image.value : this.image),
      imageDesc: (imageDesc != null ? imageDesc.value : this.imageDesc),
      imageNo: (imageNo != null ? imageNo.value : this.imageNo));
}