WalletsList constructor

const WalletsList({
  1. Key? key,
  2. required List<GridItem<ReownAppKitModalWalletInfo>> itemList,
  3. Widget? firstItem,
  4. List<Widget> bottomItems = const [],
  5. dynamic onTapWallet(
    1. ReownAppKitModalWalletInfo walletInfo
    )?,
  6. bool isLoading = false,
})

Implementation

const WalletsList({
  super.key,
  required this.itemList,
  this.firstItem,
  this.bottomItems = const [],
  this.onTapWallet,
  this.isLoading = false,
});