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