copyWith method

Implementation

WebApiModulesAgentProjectProjectBottomLineTotalRequest copyWith({
  List<WebApiApplyBottomLineTotalRequest>? items,
  double? total,
}) {
  return WebApiModulesAgentProjectProjectBottomLineTotalRequest(
    items: items ?? this.items,
    total: total ?? this.total,
  );
}