windows static method

Future<void> windows(
  1. String windows
)

Implementation

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

  if (windows.isEmpty) {
    return;
  }

  await Utils.renameWindows(windowsCmakeListsPath, windows);
}