runApp function
void
runApp(
- Widget app, {
- FlutterExceptionHandler? errorHandler,
- ErrorWidgetBuilder? errorScreen,
- ReportErrorHandler? errorReport,
- bool allowNewHandlers = false,
Used in the conditional export statement: Found in 'package:mvc_application/view.dart' For example: export 'package:mvc_application/src/conditional_export.dart' if (dart.library.html) 'package:flutter/material.dart' if (dart.library.io) 'package:mvc_application/src/controller/app.dart' show runApp; This of course is fake. Merely to satisfy the Dart Analysis tool.
Implementation
/// This of course is fake. Merely to satisfy the Dart Analysis tool.
void runApp(
Widget app, {
FlutterExceptionHandler? errorHandler,
ErrorWidgetBuilder? errorScreen,
ReportErrorHandler? errorReport,
bool allowNewHandlers = false,
}) {}