mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
9 lines
150 B
Dart
9 lines
150 B
Dart
class ExceptionEvent {
|
|
const ExceptionEvent(
|
|
this.error, [
|
|
this.stackTrace,
|
|
]);
|
|
|
|
final dynamic error;
|
|
final StackTrace? stackTrace;
|
|
}
|