BankAccountCard constructor

const BankAccountCard(
  1. {Key? key,
  2. required Datum bankAccount,
  3. required VoidCallback onLongPress}
)

Implementation

const BankAccountCard({
  Key? key,
  required this.bankAccount,
  required this.onLongPress,
}) : super(key: key);