TransferRefundCreateRequest constructor

TransferRefundCreateRequest({
  1. String? clientId,
  2. String? secret,
  3. required String transferId,
  4. required String amount,
  5. required String idempotencyKey,
})

Implementation

TransferRefundCreateRequest({
  this.clientId,
  this.secret,
  required this.transferId,
  required this.amount,
  required this.idempotencyKey,
});