getCustomAppTheme static method

FuCustomTheme getCustomAppTheme({
  1. FuCustomThemeType? themeType,
})

Implementation

static FuCustomTheme getCustomAppTheme({FuCustomThemeType? themeType}) {
  themeType ??= defaultThemeType;
  switch (themeType) {
    case FuCustomThemeType.light:
      return lightCustomAppTheme;
    default:
      return darkCustomAppTheme;
  }
}