getTableRowHoverColor static method
      
Color
getTableRowHoverColor(
    
    
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getTableRowHoverColor(
  BuildContext context, {
  UpStyle? override,
  UpStyle? style,
  UpColorType? colorType,
}) {
  return override?.tableRowHoverColor ??
      style?.tableRowHoverColor ??
      getStyleByType(UpConfig.of(context).theme, colorType)
          .tableRowHoverColor ??
      Colors.grey;
}