GatorConfig constructor

const GatorConfig({
  1. required String className,
  2. required Iterable<ConfigColor> colors,
  3. required String? outputPath,
})

The configuration that represents the YAML document.

Example yaml:

gator:
  class: MyColors
  colors:
    royalBlue: '0xff062091'
    grey: '#ffd6d6d6'

Implementation

const GatorConfig({
  required this.className,
  required this.colors,
  required this.outputPath,
});