isSet property

bool get isSet

Implementation

bool get isSet {
  const key = '__flujs_internal_isSet__';
  return _typeCheckInJS(
    key,
    '''
var t = typeof v;
if (t === 'object') { return v instanceof Set; }
return false;
''',
    ['v'],
  );
}