onPress method

dynamic onPress()

Implementation

onPress() {
  if (widget.showCloseButton != true) {
    cancelTimer();
    hide();
  }
  if (widget.onTap != null) {
    widget.onTap!(this.payload!, this.type!);
  }
  bool? callback = _controller?.isCallbackNull();
  if (callback == false) {
    _controller?.getTabListener()(this.payload, this.type!);
  }
}