copyWith method
Implementation
WebApiModulesAgentProjectCreateQuoteFromProjectRequest copyWith({
String? projectId,
String? officeLocationId,
}) {
return WebApiModulesAgentProjectCreateQuoteFromProjectRequest(
projectId: projectId ?? this.projectId,
officeLocationId: officeLocationId ?? this.officeLocationId,
);
}