cloneList<E> method
Logs and clones a list.
Implementation
@override
List<dynamic> cloneList<E>(List<E> source) {
_logger.log(
'cloneList<$E>: length=${source.length}, type=${source.runtimeType}',
);
return super.cloneList<E>(source);
}