ErrorListView constructor

const ErrorListView({
  1. required Object error,
  2. StackTrace? stackTrace,
  3. Key? key,
})

Create an instance.

Implementation

const ErrorListView({
  required this.error,
  this.stackTrace,
  super.key,
});