web static method

Future<void> web(
  1. String web
)

Implementation

static Future<void> web(String web) async {
  if (await Utils.fileNotExists(webManifestPath)) {
    Utils.printNoConfigFound('web');
    return;
  }

  if (web.isEmpty) {
    return;
  }

  await Utils.renameWeb(webManifestPath, web);
}