nc-photos/app/lib/exception_event.dart

10 lines
149 B
Dart
Raw Normal View History

class ExceptionEvent {
const ExceptionEvent(
this.error, [
this.stackTrace,
]);
2022-05-16 14:01:52 +02:00
final Object error;
final StackTrace? stackTrace;
}