ChargeTransferData constructor

const ChargeTransferData({
  1. int? amount,
  2. required AccountOrId destination,
})

An optional dictionary including the account to automatically transfer to as part of a destination charge. [See the Connect documentation](https://stripe.com/docs/connect/destination-charges) for details.

Implementation

const ChargeTransferData({
  this.amount,
  required this.destination,
});