effectivePath method

String effectivePath(
  1. String p
)
inherited

Implementation

String effectivePath(String p) => (p.isEmpty && rootPrefix.isNotEmpty)
    ? rootPrefix
    : rootPrefix.isEmpty
        ? p
        : '$rootPrefix/$p';