getTheme method

dynamic getTheme(
  1. dynamic value
)

Implementation

getTheme(value) {
  Map style = value == ThemeType.dark ? dark : light;
  setHlocFontStyle(style);
  return style;
}