PlexAlert constructor

const PlexAlert({
  1. Key? key,
  2. PlexAlertVariant variant = PlexAlertVariant.info,
  3. String? title,
  4. String? message,
  5. Widget? child,
  6. VoidCallback? onClose,
})

Implementation

const PlexAlert({
  super.key,
  this.variant = PlexAlertVariant.info,
  this.title,
  this.message,
  this.child,
  this.onClose,
});