getAssociation method

double getAssociation(
  1. String entity1,
  2. String entity2
)

Returns the association strength between two entities.

Implementation

double getAssociation(String entity1, String entity2) =>
    _associations[_associationKey(entity1, entity2)] ?? 0.0;