ErrorModel constructor

ErrorModel({
  1. String? content,
  2. String? exceptionName,
  3. int? startTime,
  4. bool isUIError = true,
  5. StackTrace? stackTrace,
  6. dynamic error,
  7. FlutterErrorDetails? errorDetails,
})

Implementation

ErrorModel({
  this.content,
  this.exceptionName,
  super.startTime,
  this.isUIError = true,
  this.stackTrace,
  this.error,
  this.errorDetails,
}) : super(type: ModelType.error);