WalletConnectModalNavBar constructor

const WalletConnectModalNavBar({
  1. Key? key,
  2. required Widget title,
  3. VoidCallback? onBack,
  4. Widget? actionWidget,
  5. required Widget child,
})

Implementation

const WalletConnectModalNavBar({
  Key? key,
  required this.title,
  this.onBack,
  this.actionWidget,
  required this.child,
}) : super(key: key);