getDivider static method

Color getDivider(
  1. bool isDarkMode
)

返回分割线颜色

Implementation

static Color getDivider(bool isDarkMode) {
  return isDarkMode ? const Color(0xFF282828) : const Color(0xffEDEDED);
}