styleReward method

dynamic styleReward({
  1. double fontSize = 12,
})

Implementation

styleReward({double fontSize = 12}) => TextStyle(
      color: getColor(
          isDark: Get.isDarkMode,
          color: Theme.of(Get.context!).primaryColorDark),
      fontWeight: FontWeight.w500,
      fontSize: fontSize,
    );