run method
Implementation
Future<void> run({required String dirPath, required FarConfig farConfig}) async {
currentDirPath = dirPath;
config = farConfig;
if (config.enable == false) {
logSkipping("$platform - $targetName settings enable is false");
return;
}
renamePlist();
await renameConfigsAppInfoValues();
log("$platform $targetName, name update completed. ✅");
}