getRelativePath static method

String getRelativePath(
  1. String projectRoot,
  2. String filePath
)

Get relative path from project root

Implementation

static String getRelativePath(String projectRoot, String filePath) {
  return p.relative(filePath, from: projectRoot);
}