TatweerInfoDialog constructor

const TatweerInfoDialog({
  1. Key? key,
  2. String? title,
  3. required String message,
  4. IconData? icon,
  5. Color? iconColor,
  6. String? buttonText,
  7. VoidCallback? onButtonPressed,
  8. Widget? contentWidget,
})

Implementation

const TatweerInfoDialog({
  Key? key,
  this.title,
  required this.message,
  this.icon,
  this.iconColor,
  this.buttonText,
  this.onButtonPressed,
  this.contentWidget,
}) : super(key: key);