PolkawalletAlertDialog constructor

const PolkawalletAlertDialog({
  1. Key? key,
  2. Widget? title,
  3. Widget? content,
  4. List<Widget> actions = const <Widget>[],
  5. DialogType type = DialogType.inform,
})

Implementation

const PolkawalletAlertDialog(
    {Key? key,
    this.title,
    this.content,
    this.actions = const <Widget>[],
    this.type = DialogType.inform})
    : super(key: key);