stripRoot static method

String stripRoot(
  1. String rootPath,
  2. String fullPath
)

Implementation

static String stripRoot(final String rootPath, final String fullPath) {
  return p.relative(p.normalize(fullPath), from: rootPath);
}