Notification constructor

Notification({
  1. required List<Object?> actions,
  2. required SDNEvent event,
  3. String? profileTag,
  4. required bool read,
  5. required String roomId,
  6. required int ts,
})

Implementation

Notification({
  required this.actions,
  required this.event,
  this.profileTag,
  required this.read,
  required this.roomId,
  required this.ts,
});