DefaultDialogButton constructor

const DefaultDialogButton({
  1. Key? key,
  2. Widget? titel,
  3. VoidCallback? onTap,
  4. bool closeAfterTap = true,
  5. Color? color,
})

Implementation

const DefaultDialogButton(
    {Key? key, this.titel, this.onTap, this.closeAfterTap = true, this.color})
    : super(key: key);