lower method
Re-inserts each selected element, in order, as the first child of its parent. Equivalent to:
selection.each((Element thisArg, JSAny? d, int i, List<Element?> nodes) {
thisArg.parentNode!.insertBefore(thisArg, thisArg.parentNode!.firstChild);
});
Implementation
Selection lower() {
return each(_lower);
}