path property

  1. @TagNumber(2)
String path

Relative path where the cache in mapped into. Required.

Must use POSIX format (forward slashes). In most cases, it does not need slashes at all.

In recipes, use api.path'cache'.join(path) to get absolute path.

Must be unique in the build.

Implementation

@$pb.TagNumber(2)
$core.String get path => $_getSZ(1);
  1. @TagNumber(2)
void path=(String v)

Implementation

@$pb.TagNumber(2)
set path($core.String v) {
  $_setString(1, v);
}