ActionsFlatButtonToAlertDialog constructor

ActionsFlatButtonToAlertDialog({
  1. String? messageButton,
  2. TextStyle? textStyleMessageButton = const TextStyle(color: Colors.black),
  3. Icon? iconButton,
  4. bool isEnabled = true,
})

Implementation

ActionsFlatButtonToAlertDialog(
    {this.messageButton,
    this.textStyleMessageButton = const TextStyle(color: Colors.black),
    this.iconButton,
    this.isEnabled = true})
    : assert(messageButton != null || iconButton != null);