tryCatch method
Implementation
Future<void> tryCatch() async {
try {
await this();
} catch (e, stackTrace) {
CkLogger.error(stackTrace.toString(), tag: 'Global Try Catch');
}
}
Future<void> tryCatch() async {
try {
await this();
} catch (e, stackTrace) {
CkLogger.error(stackTrace.toString(), tag: 'Global Try Catch');
}
}