copyWithWrapped method

Implementation

WebApiModulesAgentProjectProjectBottomLineTotalRequest copyWithWrapped({
  Wrapped<List<WebApiApplyBottomLineTotalRequest>?>? items,
  Wrapped<double?>? total,
}) {
  return WebApiModulesAgentProjectProjectBottomLineTotalRequest(
    items: (items != null ? items.value : this.items),
    total: (total != null ? total.value : this.total),
  );
}