toolNormalTextStyle static method

TextStyle toolNormalTextStyle(
  1. bool isDarkMode
)

Implementation

static TextStyle toolNormalTextStyle(bool isDarkMode) => TextStyle(
  fontSize: DeviceService.isTablet ? 14 : 13,
  color: isDarkMode ? Colors.white70 : Colors.black87,
);