tryCatch method

Future<void> tryCatch()

Implementation

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