copyWithWrapped method
Implementation
FwStandardReportingFwReportEmailInfo copyWithWrapped(
{Wrapped<String?>? from,
Wrapped<String?>? to,
Wrapped<String?>? cc,
Wrapped<String?>? subject,
Wrapped<String?>? body}) {
return FwStandardReportingFwReportEmailInfo(
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));
}