copyWithWrapped method
Implementation
WebApiModulesAccountServicesAccountGetSettingsRequest copyWithWrapped(
{Wrapped<String?>? webUsersId,
Wrapped<String?>? departmentId,
Wrapped<String?>? locationId}) {
return WebApiModulesAccountServicesAccountGetSettingsRequest(
webUsersId: (webUsersId != null ? webUsersId.value : this.webUsersId),
departmentId:
(departmentId != null ? departmentId.value : this.departmentId),
locationId: (locationId != null ? locationId.value : this.locationId));
}