copyWith method

TransferRepaymentReturnListResponse copyWith({
  1. List<TransferRepaymentReturn>? repaymentReturns,
  2. String? requestId,
})

Implementation

TransferRepaymentReturnListResponse copyWith(
    {List<TransferRepaymentReturn>? repaymentReturns, String? requestId}) {
  return TransferRepaymentReturnListResponse(
      repaymentReturns: repaymentReturns ?? this.repaymentReturns,
      requestId: requestId ?? this.requestId);
}