showWalletList function

dynamic showWalletList(
  1. BuildContext context
)

Implementation

showWalletList(BuildContext context) {
  showBottomModal(
    context: context,
    builder: (context) {
      return const WalletListScreen();
    },
  );
}