dart-app-core/lib/core/exception_manager.dart
2023-03-16 21:52:37 +09:00

8 lines
235 B
Dart

class ExceptionnManager {
ExceptionnManager._privateConstructor();
static final ExceptionnManager _instance =
ExceptionnManager._privateConstructor();
static ExceptionnManager get to => _instance;
void initialize() {}
}