Notification constructor

Notification({
  1. String? appName,
  2. required String title,
  3. required String content,
  4. String? raw,
})

Implementation

Notification({
  this.appName,
  required this.title,
  required this.content,
  this.raw,
});