CurrencyCard constructor

CurrencyCard({
  1. Key? key,
  2. required List networks,
  3. required String currency,
  4. required String abbrevation,
  5. required String icon,
})

Implementation

CurrencyCard(
    {Key? key,
    required this.networks,
    required this.currency,
    required this.abbrevation,
    required this.icon})
    : super(key: key);