dotPath property

String get dotPath

Converts file path to dot notation "assets/data/config.json" -> "assets.data.config" (without extension)

Implementation

String get dotPath =>
    _pathToDotNotation(normalizedPath, includeExtension: false);