InfoDialog constructor

const InfoDialog({
  1. String? title,
  2. String? content,
  3. String? lottiePath,
  4. EdgeInsets? lottiePadding,
  5. String? labelButton,
  6. Color? colorButton,
  7. Color? colorTextButton,
  8. double? fontSizeButton,
  9. Icon? iconButton,
  10. dynamic onPressed()?,
  11. Widget? customWidget,
  12. Key? key,
})

Implementation

const InfoDialog({
  this.title,
  this.content,
  this.lottiePath,
  this.lottiePadding,
  this.labelButton,
  this.colorButton,
  this.colorTextButton,
  this.fontSizeButton,
  this.iconButton,
  this.onPressed,
  this.customWidget,
  Key? key,
}) : super(key: key);