Config constructor

Config({
  1. String title = '',
  2. String author = '',
  3. String baseUrl = '',
  4. required BuildConfig build,
  5. required ServeConfig serve,
  6. required TemplatesConfig templates,
  7. YamlMap? extra,
})

Implementation

Config({
  this.title = '',
  this.author = '',
  this.baseUrl = '',
  required this.build,
  required this.serve,
  required this.templates,
  YamlMap? extra,
}) : extra = extra ?? YamlMap();