copyWith method
Implementation
FwStandardReportingFwReportEmailInfo copyWith(
{String? from, String? to, String? cc, String? subject, String? body}) {
return FwStandardReportingFwReportEmailInfo(
from: from ?? this.from,
to: to ?? this.to,
cc: cc ?? this.cc,
subject: subject ?? this.subject,
body: body ?? this.body);
}