toDartSet method

Set<Object> toDartSet({
  1. Object convertOther(
    1. ObjCObjectBase
    ) = _defaultDartConverter,
})

Implementation

Set<Object> toDartSet({
  Object Function(ObjCObjectBase) convertOther = _defaultDartConverter,
}) => map((o) => toDartObject(o, convertOther: convertOther)).toSet();