copyWith method

WebApiModulesAgentProjectCreateQuoteFromProjectRequest copyWith({
  1. String? projectId,
  2. String? officeLocationId,
})

Implementation

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