GatorConfig constructor
const
GatorConfig({
- required String className,
- required Iterable<
ConfigColor> colors, - 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,
});