onHover method

AzButton onHover(
  1. void callback(
    1. bool
    )?
)

Implementation

AzButton onHover(void Function(bool)? callback){
  _onHover = callback;
  return this;
}