nc-photos/app/lib/exception_event.dart
2022-04-06 02:37:58 +08:00

9 lines
150 B
Dart

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