isRenamed method

bool isRenamed(
  1. List<String> projectPath
)

Implementation

bool isRenamed(List<String> projectPath) {
  Function eq = const ListEquality().equals;
  for(final candidate in renamed.keys) {
    if(eq(candidate, projectPath)) {
      return true;
    }
  }
  return false;
}