apply abstract method

double apply(
  1. String s1,
  2. String s2, {
  3. double scoreCutoff = 0.0,
})

Returns the score of similarity computed from s1 and s2 Optionally takes a scoreCutoff which will return early if the score is below the threshold

Implementation

double apply(String s1, String s2, {double scoreCutoff = 0.0});