WalletCard constructor

const WalletCard({
  1. Key? key,
  2. required String currency,
  3. required double value,
  4. required bool balanceVisible,
})

Implementation

const WalletCard({
  super.key,
  required this.currency,
  required this.value,
  required this.balanceVisible,
});