BackendVerification constructor

const BackendVerification({
  1. required bool agrees,
  2. required double absoluteDeviation,
  3. required double outputRange,
  4. required double relativeDeviation,
  5. String? skippedReason,
  6. Object? error,
})

Implementation

const BackendVerification({
  required this.agrees,
  required this.absoluteDeviation,
  required this.outputRange,
  required this.relativeDeviation,
  this.skippedReason,
  this.error,
});