ExceptionComponent constructor

const ExceptionComponent({
  1. required Object exception,
  2. StackTrace? stackTrace,
  3. int maxStackFrames = 10,
  4. bool showFullPaths = false,
  5. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const ExceptionComponent({
  required this.exception,
  this.stackTrace,
  this.maxStackFrames = 10,
  this.showFullPaths = false,
  this.renderConfig = const RenderConfig(),
});