BuildConfig constructor

const BuildConfig({
  1. bool? verbose,
  2. String? publicDir,
  3. String? contentDir,
  4. String? templatesDir,
  5. String? staticDir,
  6. String? stylesDir,
  7. String? dataDir,
  8. String? typesDir,
  9. bool? generateSearchIndex,
})

Implementation

const BuildConfig({
  bool? verbose,
  String? publicDir,
  String? contentDir,
  String? templatesDir,
  String? staticDir,
  String? stylesDir,
  String? dataDir,
  String? typesDir,
  bool? generateSearchIndex,
})  : verbose = verbose ?? false,
      publicDir = publicDir ?? 'public',
      contentDir = contentDir ?? 'content',
      templatesDir = templatesDir ?? 'templates',
      staticDir = staticDir ?? 'static',
      dataDir = dataDir ?? 'data',
      stylesDir = stylesDir ?? 'styles',
      typesDir = typesDir ?? 'types',
      generateSearchIndex = generateSearchIndex ?? false;