isHashMap method

bool isHashMap(
  1. TypeInfo typeInfo
)

Implementation

bool isHashMap(TypeInfo typeInfo) =>
    typeInfo.typeName!.startsWith('HashMap<') ||
    typeInfo.typeName!.startsWith('_HashMap<');