clearBuildHistory method
Deletes the build history file. Returns true if a file was removed.
Implementation
Future<bool> clearBuildHistory() async {
final file = File(_historyFilePath);
if (!file.existsSync()) return false;
await file.delete();
return true;
}