ComparisonResult constructor

ComparisonResult({
  1. String? error,
  2. Image? isolated,
  3. Image? masked,
  4. required bool passed,
})

Creates a new ComparisonResult for the current test.

Implementation

ComparisonResult({
  this.error,
  this.isolated,
  this.masked,
  required this.passed,
});