TenunValidationReportFallback constructor

const TenunValidationReportFallback({
  1. Key? key,
  2. required ValidationResult result,
  3. Map<String, dynamic>? rawPayload,
  4. bool requireRegisteredType = false,
  5. required int validationReportMaxIssues,
  6. String title = 'Invalid chart payload',
  7. String? message,
  8. List<Widget> footerChildren = const [],
  9. bool showDoctorSummary = true,
  10. bool showValidationDetails = true,
  11. bool showQuickFixes = true,
  12. int maxQuickFixes = 3,
  13. TenunDiagnosticFallbackOptions? options,
})

Implementation

const TenunValidationReportFallback({
  super.key,
  required this.result,
  this.rawPayload,
  this.requireRegisteredType = false,
  required this.validationReportMaxIssues,
  this.title = 'Invalid chart payload',
  this.message,
  this.footerChildren = const [],
  this.showDoctorSummary = true,
  this.showValidationDetails = true,
  this.showQuickFixes = true,
  this.maxQuickFixes = 3,
  this.options,
});