applyInternal method
      
  
bool
applyInternal(
    
- String applyType,
- AFWidgetSelector selector,
- Element elem,
- dynamic data,
override
    data is ignored.
Implementation
@override
bool applyInternal(String applyType, AFWidgetSelector selector, Element elem, dynamic data) {
  final tapOn = elem.widget;
  if(tapOn is ListTile) {
    tapOn.onTap?.call();
    return true;
  }
  return false;
}