copyWithWrapped method

TransferRepaymentListResponse copyWithWrapped({
  1. Wrapped<List<TransferRepayment>>? repayments,
  2. Wrapped<String>? requestId,
})

Implementation

TransferRepaymentListResponse copyWithWrapped(
    {Wrapped<List<TransferRepayment>>? repayments,
    Wrapped<String>? requestId}) {
  return TransferRepaymentListResponse(
      repayments: (repayments != null ? repayments.value : this.repayments),
      requestId: (requestId != null ? requestId.value : this.requestId));
}