copyWithWrapped method
TransferRepaymentListResponse
copyWithWrapped({
- Wrapped<
List< ? repayments,TransferRepayment> > - 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));
}