1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 01:38:52 +01:00
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;
}