scopeIdForPath method

String scopeIdForPath(
  1. List<String> path, {
  2. required String? packagePath,
})

Returns the scope id for a group path.

Implementation

String scopeIdForPath(
  List<String> path, {
  required String? packagePath,
}) {
  return buildPackageTestScopeId(packagePath, path);
}