ErrorModel constructor
ErrorModel({
- String? content,
- String? exceptionName,
- int? startTime,
- bool isUIError = true,
- StackTrace? stackTrace,
- dynamic error,
- FlutterErrorDetails? errorDetails,
Implementation
ErrorModel({
this.content,
this.exceptionName,
super.startTime,
this.isUIError = true,
this.stackTrace,
this.error,
this.errorDetails,
}) : super(type: ModelType.error);