cloneList<E> method
Clones a list, producing a new list with cloned elements.
Each element in the source list is cloned according to the cloner's rules.
Implementation
@override
List<E> cloneList<E>(List<E> source) {
_log('cloneList<$E>: length=${source.length}, type=${source.runtimeType}');
return super.cloneList<E>(source);
}