getSecond static method

Color getSecond(
  1. bool isDarkMode
)

次要的,现在被用在表示无效文字

Implementation

static Color getSecond(bool isDarkMode) {
  return isDarkMode ? const Color(0xFF696969) : const Color(0xFF909090);
}