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