NWalletActions constructor
const
NWalletActions({
- Key? key,
- required NdkFlutter ndkFlutter,
- required String selectedWalletId,
- VoidCallback? onClearSelection,
- bool showTitle = true,
- bool showCloseButton = true,
- bool condensed = false,
Implementation
const NWalletActions({
super.key,
required this.ndkFlutter,
required this.selectedWalletId,
this.onClearSelection,
this.showTitle = true,
this.showCloseButton = true,
this.condensed = false,
}) : assert(
!showCloseButton || onClearSelection != null,
'onClearSelection is required when showCloseButton is true',
);