cloneList<E> method

  1. @override
List<E> cloneList<E>(
  1. List<E> source
)
override

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);
}