copyWith method

Implementation

WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleResource
copyWith({String? name, String? id, String? backColor, String? orderBy}) {
  return WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleResource(
    name: name ?? this.name,
    id: id ?? this.id,
    backColor: backColor ?? this.backColor,
    orderBy: orderBy ?? this.orderBy,
  );
}