Overview constructor

const Overview({
  1. Key? key,
  2. required String amount,
  3. required String fee,
  4. required String total,
  5. required String currency,
})

Implementation

const Overview({
  super.key,
  required this.amount,
  required this.fee,
  required this.total,
  required this.currency,
});