SecurityCheckResult constructor

const SecurityCheckResult({
  1. required bool passed,
  2. List<String> violations = const [],
  3. List<String> warnings = const [],
})

Implementation

const SecurityCheckResult({
  required this.passed,
  this.violations = const [],
  this.warnings = const [],
});