resolveRelativeImport static method

String resolveRelativeImport(
  1. String fromPath,
  2. String toPath
)

Implementation

static String resolveRelativeImport(String fromPath, String toPath) {
  final relative = p.relative(toPath, from: p.dirname(fromPath));
  return relative.replaceAll(p.separator, '/');
}