TAlert constructor

const TAlert({
  1. Key? key,
  2. String? title,
  3. dynamic text,
  4. IconData? icon,
  5. AlertButton? closeButton,
  6. AlertButton? confirmButton,
  7. Color? color,
  8. TAlertTheme? theme,
})

Implementation

const TAlert({
  super.key,
  this.title,
  this.text,
  this.icon,
  this.closeButton,
  this.confirmButton,
  this.color,
  this.theme,
});