renameAllIOS static method
Implementation
static Future<void> renameAllIOS(
    List<String> filePaths, String appName) async {
  for (String path in filePaths) {
    if (!await fileNotExists(path)) {
      await renameIOS(path, appName);
    }
  }
}