ErrorDialog constructor

const ErrorDialog(
  1. {Key? key,
  2. String? title,
  3. String? iconPath,
  4. required List<String> text,
  5. required String buttonText,
  6. VoidCallback? onTap,
  7. Color? iconColor,
  8. required String supportSubject,
  9. String? imagePath}
)

Implementation

const ErrorDialog({
  Key? key,
  this.title,
  this.iconPath,
  required this.text,
  required this.buttonText,
  this.onTap,
  this.iconColor,
  required this.supportSubject,
  this.imagePath,
}) : super(key: key);