1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 01:38:52 +01:00
nc-photos/app/lib/exception_event.dart
2022-05-21 19:37:39 +08:00

9 lines
149 B
Dart

class ExceptionEvent {
const ExceptionEvent(
this.error, [
this.stackTrace,
]);
final Object error;
final StackTrace? stackTrace;
}