isHashSet method

bool isHashSet(
  1. TypeInfo typeInfo
)

Implementation

bool isHashSet(TypeInfo typeInfo) =>
    typeInfo.typeName!.startsWith('HashSet<') ||
    typeInfo.typeName!.startsWith('_HashSet<') ||
    typeInfo.typeName!.startsWith('_CompactLinkedHashSet<');