copyWith method
Implementation
WebApiModulesAccountServicesAccountGetSettingsRequest copyWith({
String? webUsersId,
String? departmentId,
String? locationId,
}) {
return WebApiModulesAccountServicesAccountGetSettingsRequest(
webUsersId: webUsersId ?? this.webUsersId,
departmentId: departmentId ?? this.departmentId,
locationId: locationId ?? this.locationId,
);
}