copyWith method
Implementation
TransferRepaymentListResponse copyWith(
{List<TransferRepayment>? repayments, String? requestId}) {
return TransferRepaymentListResponse(
repayments: repayments ?? this.repayments,
requestId: requestId ?? this.requestId);
}