copyWith method

FwStandardReportingFwReportEmailInfo copyWith({
  1. String? from,
  2. String? to,
  3. String? cc,
  4. String? subject,
  5. String? body,
})

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