PhoenixDialog constructor

const PhoenixDialog({
  1. Key? key,
  2. bool showIcon = false,
  3. Image? iconImage,
  4. String? titleText,
  5. String? messageText,
  6. Widget? titleWidget,
  7. Widget? contentWidget,
  8. String? warningText,
  9. Widget? warningWidget,
  10. List<Widget>? actionsWidget,
  11. Divider divider = cDividerLine,
  12. VerticalDivider verticalDivider = cVerticalDivider,
  13. List<String>? actionsText,
  14. DialogIndexedActionClickCallback? indexedActionCallback,
  15. DialogConfig? themeData,
  16. int titleMaxLines = cTitleMaxLines,
})

Implementation

const PhoenixDialog({
  Key? key,
  this.showIcon = false,
  this.iconImage,
  this.titleText,
  this.messageText,
  this.titleWidget,
  this.contentWidget,
  this.warningText,
  this.warningWidget,
  this.actionsWidget,
  this.divider = cDividerLine,
  this.verticalDivider = cVerticalDivider,
  this.actionsText,
  this.indexedActionCallback,
  this.themeData,
  this.titleMaxLines = cTitleMaxLines,
}) : super(key: key);