CreateRefundAttributes constructor

const CreateRefundAttributes({
  1. required int amount,
  2. String? notes,
  3. required String paymentId,
  4. required String reason,
  5. required Map<String, dynamic> metadata,
})

Implementation

const CreateRefundAttributes({
  required this.amount,
  this.notes,
  required this.paymentId,
  required this.reason,
  required this.metadata,
});