NotificationList<E>.from constructor
Implementation
factory NotificationList.from(Iterable elements, {bool growable = true}) {
var returnList = NotificationList<E>();
returnList._l = List.from(elements, growable: growable);
return returnList;
}