copyWith method
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);
}