toThemeType method

ThemeType toThemeType()

Implementation

ThemeType toThemeType() {
  switch (this) {
    case 'QUICKSIGHT':
      return ThemeType.quicksight;
    case 'CUSTOM':
      return ThemeType.custom;
    case 'ALL':
      return ThemeType.all;
  }
  throw Exception('$this is not known in enum ThemeType');
}