copyWith method

WebApiModulesPluginsKissFlowProjectResponse copyWith({
  1. int? status,
  2. bool? success,
  3. String? msg,
  4. WebApiModulesAgentProjectProject? project,
  5. String? projectUrl,
  6. String? agentEmail,
  7. String? projectManagerEmail,
  8. String? outsideSalesRepresentativeEmail,
})

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