popularitySum property

  1. @ignore
double popularitySum

Sum of popularity of all dictionary entries belonging to this entry.

Implementation

@ignore
double get popularitySum {
  return entries.map((entry) => entry.popularity).sum;
}