PolkawalletActionSheet constructor

const PolkawalletActionSheet({
  1. Key? key,
  2. Widget? title,
  3. Widget? message,
  4. required List<Widget> actions,
  5. Widget? cancelButton,
})

Implementation

const PolkawalletActionSheet({
  Key? key,
  this.title,
  this.message,
  required this.actions,
  this.cancelButton,
}) : super(key: key);