NotificationList<E>.generate constructor
Implementation
factory NotificationList.generate(int length, E generator(int index),
{bool growable = true}) {
var returnValue = NotificationList<E>();
returnValue._l = List<E>.generate(length, generator, growable: growable);
return returnValue;
}