nc-photos/lib/exception_event.dart

10 lines
150 B
Dart
Raw Normal View History

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