accent property

  1. @Deprecated("This extension is not being used in this package and will be removed " "in next major release.")
Color accent

Implementation

@Deprecated(
    "This extension is not being used in this package and will be removed "
    "in next major release.")
Color get accent =>
    (blue / 2 >= 255 / 2 || red / 2 >= 255 / 2 || green / 2 >= 255 / 2)
        ? Colors.black
        : Colors.white;