Theme constructor

Theme({
  1. required String themeKey,
  2. String? name,
  3. String? description,
  4. Icon? icon,
  5. GenericLinks? links,
})

Implementation

Theme(
    {required this.themeKey,
    this.name,
    this.description,
    this.icon,
    this.links});