hasHot method

bool hasHot (
  1. String sym
)

return true if the sym has a value in the SamHot map.

Implementation

bool hasHot(String sym) {
  return _hotMap.has(sym);
}