reportCrash method

Future<void> reportCrash()

Tell the updater that a fatal error was caught — equivalent to a hard crash from the rollback perspective. Optional; the native crash bridge fires this automatically for uncaught exceptions.

Implementation

Future<void> reportCrash() {
  _assertReady();
  return SankofaDeployPlatform.instance.reportCrash();
}