setBasePath method

ConfigurationBuilder setBasePath(
  1. String basePath
)

Sets the FileProvider for file-based providers to a PhysicalFileProvider with the base path.

basePath - The absolute path of file-based providers.

Returns the ConfigurationBuilder.

Implementation

ConfigurationBuilder setBasePath(String basePath) =>
    setFileProvider(PhysicalFileProvider(basePath));