highlightRow method

void highlightRow(
  1. TapDownDetails det
)

Implementation

void highlightRow(TapDownDetails det) {
  if (_stateRowData!.type == SettingDataType.kWidgetDropdown ||
      _stateRowData!.type == SettingDataType.kWidgetUrlData ||
      _stateRowData!.type == SettingDataType.kWidgetButtonData) {
    currentRowColor = widget.style.highlightColor;
    setState(() {});
  }
}