copyWith method

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

Implementation

FwStandardBusinessLogicFwAppImageLogicEmailRequest copyWith({
  String? from,
  String? to,
  String? cc,
  String? subject,
  String? body,
  bool? showImagesInBody,
  List<String>? appImageIds,
}) {
  return FwStandardBusinessLogicFwAppImageLogicEmailRequest(
    from: from ?? this.from,
    to: to ?? this.to,
    cc: cc ?? this.cc,
    subject: subject ?? this.subject,
    body: body ?? this.body,
    showImagesInBody: showImagesInBody ?? this.showImagesInBody,
    appImageIds: appImageIds ?? this.appImageIds,
  );
}