copyWith method
Implementation
WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleRequest
copyWith(
{DateTime? fromDate,
DateTime? toDate,
String? officeLocationId,
String? customerId,
String? departmentId,
String? dealId,
String? projectId,
String? projectManagerId,
bool? includeCompleted}) {
return WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleRequest(
fromDate: fromDate ?? this.fromDate,
toDate: toDate ?? this.toDate,
officeLocationId: officeLocationId ?? this.officeLocationId,
customerId: customerId ?? this.customerId,
departmentId: departmentId ?? this.departmentId,
dealId: dealId ?? this.dealId,
projectId: projectId ?? this.projectId,
projectManagerId: projectManagerId ?? this.projectManagerId,
includeCompleted: includeCompleted ?? this.includeCompleted);
}