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