failedChecks property

Required checks that failed.

Implementation

Iterable<PixaRuntimePlatformCheck> get failedChecks {
  return checks.where((PixaRuntimePlatformCheck check) {
    return check.required && !check.passed;
  });
}