convertToSet<T> method
Attempting to convert this object into a Set using the ConvertObject class.
Implementation
Set<T> convertToSet<T>({
dynamic mapKey,
int? listIndex,
}) {
return ConvertObject.toSet<T>(
this,
mapKey: mapKey,
listIndex: listIndex,
);
}