convertToSet<T> method

Set<T> convertToSet<T>({
  1. dynamic mapKey,
  2. int? listIndex,
})

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