ChargeRefunds constructor

const ChargeRefunds({
  1. required List<Refund> data,
  2. required bool hasMore,
  3. required String url,
})

RefundList

A list of refunds that have been applied to the charge.

Implementation

const ChargeRefunds({
  required this.data,
  required this.hasMore,
  required this.url,
});