AppNotification constructor

const AppNotification({
  1. required String title,
  2. required String message,
  3. bool read = false,
})

Implementation

const AppNotification({
  required this.title,
  required this.message,
  this.read = false,
});