generatedSubPath top-level property

String generatedSubPath
getter/setter pair

Default path to reach where file will be generated.

In case of an Application, it will be generate under lib/core but in case of module it will be generated under lib/src/core

Implementation

String generatedSubPath = _isModule() ? '/src/' : '/';