nc-photos/lib/exception_event.dart
2021-09-29 04:57:38 +08:00

9 lines
150 B
Dart

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