TenunRenderErrorFallback constructor

const TenunRenderErrorFallback({
  1. Key? key,
  2. required Object error,
  3. StackTrace? stackTrace,
  4. Map<String, dynamic>? rawPayload,
  5. bool requireRegisteredType = false,
  6. int validationReportMaxIssues = 3,
  7. String title = 'Chart render error',
  8. String? message = 'The chart could not be rendered.',
  9. String? detailMessage,
  10. List<Widget> footerChildren = const [],
  11. bool showDoctorSummary = true,
  12. bool showValidationDetails = true,
  13. bool showErrorDetails = true,
  14. bool showQuickFixes = true,
  15. int maxQuickFixes = 3,
  16. TenunDiagnosticFallbackOptions? options,
})

Implementation

const TenunRenderErrorFallback({
  super.key,
  required this.error,
  this.stackTrace,
  this.rawPayload,
  this.requireRegisteredType = false,
  this.validationReportMaxIssues = 3,
  this.title = 'Chart render error',
  this.message = 'The chart could not be rendered.',
  this.detailMessage,
  this.footerChildren = const [],
  this.showDoctorSummary = true,
  this.showValidationDetails = true,
  this.showErrorDetails = true,
  this.showQuickFixes = true,
  this.maxQuickFixes = 3,
  this.options,
});