tooltip static method
TextStyle
tooltip({
- Color color = const Color(0xFFFFFFFF),
- double fontSize = 12,
- FontWeight fontWeight = FontWeight.normal,
- String? fontFamily,
Creates a tooltip text style.
Implementation
static TextStyle tooltip({
Color color = const Color(0xFFFFFFFF),
double fontSize = 12,
FontWeight fontWeight = FontWeight.normal,
String? fontFamily,
}) {
return TextStyle(
color: color,
fontSize: fontSize,
fontWeight: fontWeight,
fontFamily: fontFamily,
);
}