cloneSet<E> method

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

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