isHashSet method

bool isHashSet(
  1. TypeInfo typeInfo
)
inherited

Implementation

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