copyWith method
Implementation
WebApiModulesPluginsKissFlowProjectResponse copyWith({
int? status,
bool? success,
String? msg,
WebApiModulesAgentProjectProject? project,
String? projectUrl,
String? agentEmail,
String? projectManagerEmail,
String? outsideSalesRepresentativeEmail,
}) {
return WebApiModulesPluginsKissFlowProjectResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
project: project ?? this.project,
projectUrl: projectUrl ?? this.projectUrl,
agentEmail: agentEmail ?? this.agentEmail,
projectManagerEmail: projectManagerEmail ?? this.projectManagerEmail,
outsideSalesRepresentativeEmail:
outsideSalesRepresentativeEmail ??
this.outsideSalesRepresentativeEmail,
);
}