runZonedError method

void runZonedError(
  1. dynamic ex,
  2. StackTrace stack
)

Report the error in a zone.

Implementation

void runZonedError(dynamic ex, StackTrace stack) {
  reportError(
    ex,
    stack,
    message: 'while attempting to execute runApp()',
    library: 'controller/app.dart',
  );
}