DialogMsg constructor

const DialogMsg({
  1. Key? key,
  2. required String title,
  3. required String message,
  4. required VoidCallback onPressed,
  5. String closeText = 'Ok',
  6. Color color = Colors.blue,
})

Implementation

const DialogMsg({
  super.key,
  required this.title,
  required this.message,
  required this.onPressed,
  this.closeText = 'Ok',
  this.color = Colors.blue
});