AuthorizationAmountDetails constructor

const AuthorizationAmountDetails({
  1. int? atmFee,
  2. int? cashbackAmount,
})

amount_details_specs

Detailed breakdown of amount components. These amounts are denominated in `currency` and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).

Implementation

const AuthorizationAmountDetails({
  this.atmFee,
  this.cashbackAmount,
});