FeeRefund constructor
const
FeeRefund({
- required int amount,
- BalanceTransactionOrId? balanceTransaction,
- required DateTime created,
- required String currency,
- required ApplicationFeeOrId fee,
- required String id,
- Map<
String, String> ? metadata,
FeeRefund
`Application Fee Refund` objects allow you to refund an application fee that has previously been created but not yet refunded. Funds will be refunded to the Stripe account from which the fee was originally collected. Related guide: [Refunding application fees](https://stripe.com/docs/connect/destination-charges#refunding-app-fee)
Implementation
const FeeRefund({
required this.amount,
this.balanceTransaction,
required this.created,
required this.currency,
required this.fee,
required this.id,
this.metadata,
});