getErrorForFileNotFound function

void getErrorForFileNotFound()

Prints the "file not found" help shown when web/index.html or web/manifest.json is missing, pointing the user at Flutter web setup.

Implementation

void getErrorForFileNotFound() {
  Logger.error(
      "\n❌ Error: file not found, make sure there is web/index.html and web/manifest.json in your project\n");

  Logger.normal("\nenable web support in your project\n");
  Logger.normal("to know more: https://docs.flutter.dev/web\n\n");
}