copyWith method

WebApiModulesAccountServicesAccountGetSettingsRequest copyWith({
  1. String? webUsersId,
  2. String? departmentId,
  3. String? locationId,
})

Implementation

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