handlerTap method

  1. @protected
dynamic handlerTap(
  1. T? action
)

Implementation

@protected
handlerTap(T? action) async {
  if (action?.onTap != null) {
    action?.onTap?.call(close);
  }

  if (widget.dismissOnAction == true) {
    await close();
  }
}