InformationalWidget constructor

const InformationalWidget({
  1. Key? key,
  2. required String title,
  3. required String message,
  4. String severity = 'info',
  5. VoidCallback? onTap,
})

Implementation

const InformationalWidget({
  super.key,
  required this.title,
  required this.message,
  this.severity = 'info',
  this.onTap,
});