copyWith method

CellKitRenewalDTO copyWith({
  1. String? requestId,
  2. String? sapAccountNumber,
  3. 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);
}