copyWith method
- String? requestId,
- String? sapAccountNumber,
- List<
CellKitRenewalItem> ? items,
Implementation
CellKitRenewalDTO copyWith(
{String? requestId,
String? sapAccountNumber,
List<CellKitRenewalItem>? items}) {
return CellKitRenewalDTO(
requestId: requestId ?? this.requestId,
sapAccountNumber: sapAccountNumber ?? this.sapAccountNumber,
items: items ?? this.items);
}