LocalFileComparatorWithThreshold constructor

LocalFileComparatorWithThreshold(
  1. Uri testFile,
  2. double threshold
)

Implementation

LocalFileComparatorWithThreshold(Uri testFile, this.threshold)
    : assert(threshold >= 0 && threshold <= 1),
      super(testFile);