WalletConnectIconButton constructor

const WalletConnectIconButton({
  1. Key? key,
  2. required void onPressed(),
  3. required String iconPath,
  4. Color? color,
  5. double size = 26,
})

Implementation

const WalletConnectIconButton({
  super.key,
  required this.onPressed,
  required this.iconPath,
  this.color,
  this.size = 26,
});