removeCustomAction method
Removes a custom action from the target project by name.
Custom actions are not declared via the DSL, so no declaration-conflict check is performed.
Implementation
void removeCustomAction(String name) {
_rawMutations.add(
(project) => custom_code_helpers.removeCustomAction(project, name: name),
);
}