Theme constructor

Theme({
  1. List<Page>? pages,
  2. String? themeId,
  3. String? name,
  4. Colors? colors,
  5. String? selectedPageId,
  6. List<Locale>? selectedLocales,
})

Implementation

Theme(
    {this.pages,
    this.themeId,
    this.name,
    this.colors,
    this.selectedPageId,
    this.selectedLocales});