TempDirectory.resolveFor constructor

TempDirectory.resolveFor(
  1. String relativePath
)

Implementation

TempDirectory.resolveFor(String relativePath)
  : path = p.normalize(
      p.join(
        io.Directory.systemTemp.path,
        relativePath,
      ),
    );