onHover method

Widget onHover(
  1. void action(
    1. bool hovering
    )
)

Implementation

Widget onHover(void Function(bool hovering) action) =>
    OnHover(action: action, child: this);