copyWithWrapped method

FwStandardBusinessLogicFwAppImageLogicEmailRequest copyWithWrapped({
  1. Wrapped<String>? from,
  2. Wrapped<String>? to,
  3. Wrapped<String?>? cc,
  4. Wrapped<String?>? subject,
  5. Wrapped<String?>? body,
  6. Wrapped<bool?>? showImagesInBody,
  7. Wrapped<List<String>>? appImageIds,
})

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