VerificationResult constructor

VerificationResult({
  1. required String checkName,
  2. required VerificationStatus status,
  3. String? message,
  4. String? fixSuggestion,
  5. Map<String, dynamic>? details,
})

Implementation

VerificationResult({
  required this.checkName,
  required this.status,
  this.message,
  this.fixSuggestion,
  this.details,
});