toMutableSet method
Returns this iterable as a mutable Set using the centralized conversion logic.
Implementation
Set<E> toMutableSet({ElementConverter<E>? converter}) =>
ConvertObjectImpl.toSet<E>(
this,
elementConverter: converter,
debugInfo: {'method': 'IterableConversionX.toMutableSet'},
);