copyWithWrapped method

FwStandardModelsFwAppImageModel copyWithWrapped({
  1. Wrapped<String?>? appImageId,
  2. Wrapped<String?>? dateStamp,
  3. Wrapped<String?>? description,
  4. Wrapped<String?>? extension,
  5. Wrapped<String?>? mimeType,
  6. Wrapped<int?>? width,
  7. Wrapped<int?>? height,
  8. Wrapped<String?>? recType,
  9. Wrapped<String?>? fileDownloadName,
  10. Wrapped<int?>? orderBy,
  11. Wrapped<String?>? image,
})

Implementation

FwStandardModelsFwAppImageModel copyWithWrapped({
  Wrapped<String?>? appImageId,
  Wrapped<String?>? dateStamp,
  Wrapped<String?>? description,
  Wrapped<String?>? extension,
  Wrapped<String?>? mimeType,
  Wrapped<int?>? width,
  Wrapped<int?>? height,
  Wrapped<String?>? recType,
  Wrapped<String?>? fileDownloadName,
  Wrapped<int?>? orderBy,
  Wrapped<String?>? image,
}) {
  return FwStandardModelsFwAppImageModel(
    appImageId: (appImageId != null ? appImageId.value : this.appImageId),
    dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
    description: (description != null ? description.value : this.description),
    extension: (extension != null ? extension.value : this.extension),
    mimeType: (mimeType != null ? mimeType.value : this.mimeType),
    width: (width != null ? width.value : this.width),
    height: (height != null ? height.value : this.height),
    recType: (recType != null ? recType.value : this.recType),
    fileDownloadName: (fileDownloadName != null
        ? fileDownloadName.value
        : this.fileDownloadName),
    orderBy: (orderBy != null ? orderBy.value : this.orderBy),
    image: (image != null ? image.value : this.image),
  );
}