TenunInvalidPayloadFallback constructor

const TenunInvalidPayloadFallback({
  1. Key? key,
  2. required TenunOptionBuildResult result,
  3. required Map<String, dynamic> rawPayload,
  4. required bool requireRegisteredType,
  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 showErrorDetails = true,
  12. bool showQuickFixes = true,
  13. int maxQuickFixes = 3,
  14. TenunDiagnosticFallbackOptions? options,
})

Implementation

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