AmountTile constructor

const AmountTile({
  1. Key? key,
  2. required Price nominal,
  3. double height = 100,
  4. OperationDepositMethodPricing? pricing,
})

Implementation

const AmountTile({
  super.key,
  required this.nominal,
  this.height = 100,
  this.pricing,
});