PolkawalletActionSheetAction constructor

const PolkawalletActionSheetAction({
  1. Key? key,
  2. required VoidCallback? onPressed,
  3. bool isDefaultAction = false,
  4. required Widget child,
})

Implementation

const PolkawalletActionSheetAction({
  Key? key,
  required this.onPressed,
  this.isDefaultAction = false,
  required this.child,
}) : super(key: key);