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