void
setConfig({Directory inputDir, bool showWarnings: false, bool addCrossdart: false, String examplePathPrefix, bool includeSource: true, String sdkVersion, bool autoIncludeDependencies: false, List<String> categoryOrder })
Source
void setConfig(
{Directory inputDir,
bool showWarnings: false,
bool addCrossdart: false,
String examplePathPrefix,
bool includeSource: true,
String sdkVersion,
bool autoIncludeDependencies: false,
List<String> categoryOrder}) {
if (categoryOrder == null) {
categoryOrder = new UnmodifiableListView<String>([]);
}
_config = new Config._(
inputDir,
showWarnings,
addCrossdart,
examplePathPrefix,
includeSource,
sdkVersion,
autoIncludeDependencies,
categoryOrder);
}