copyWithWrapped method
Implementation
FwStandardBusinessLogicFwAppImageLogicEmailRequest copyWithWrapped(
{Wrapped<String>? from,
Wrapped<String>? to,
Wrapped<String?>? cc,
Wrapped<String?>? subject,
Wrapped<String?>? body,
Wrapped<bool?>? showImagesInBody,
Wrapped<List<String>>? appImageIds}) {
return FwStandardBusinessLogicFwAppImageLogicEmailRequest(
from: (from != null ? from.value : this.from),
to: (to != null ? to.value : this.to),
cc: (cc != null ? cc.value : this.cc),
subject: (subject != null ? subject.value : this.subject),
body: (body != null ? body.value : this.body),
showImagesInBody: (showImagesInBody != null
? showImagesInBody.value
: this.showImagesInBody),
appImageIds:
(appImageIds != null ? appImageIds.value : this.appImageIds));
}