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