notifications property
      
      List<Notification> 
      get
      notifications
      
    
    
    
Implementation
List<Notification> get notifications {
  List<Notification> list = [];
  for (var map in notificationList) {
    list.add(Notification(map));
  }
  return list;
}