copyWithWrapped method

Implementation

WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleResource
    copyWithWrapped(
        {Wrapped<String?>? name,
        Wrapped<String?>? id,
        Wrapped<String?>? backColor,
        Wrapped<String?>? orderBy}) {
  return WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleResource(
      name: (name != null ? name.value : this.name),
      id: (id != null ? id.value : this.id),
      backColor: (backColor != null ? backColor.value : this.backColor),
      orderBy: (orderBy != null ? orderBy.value : this.orderBy));
}