themeData property

ThemeData get themeData

Implementation

ThemeData get themeData {
  switch (this) {
    case CustomTheme.dark:
      return darkTheme;
    case CustomTheme.light:
      return lightTheme;
  }
}