cloneSet<E> method

  1. @override
Set<E> cloneSet<E>(
  1. Set<E> source
)
override

Logs and clones a set.

Implementation

@override
Set<E> cloneSet<E>(Set<E> source) {
  _log('cloneSet<$E>: length=${source.length}, type=${source.runtimeType}');
  return super.cloneSet<E>(source);
}