NotificationList<E>.filled constructor
Implementation
factory NotificationList.filled(int length, E fill, {bool growable = false}) {
var returnList = NotificationList<E>();
returnList._l = List<E>.filled(length, fill, growable: growable);
return returnList;
}