renameAllIOS static method

Future<void> renameAllIOS(
  1. List<String> filePaths,
  2. String appName
)

Implementation

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