handlerTap method
Implementation
@protected
handlerTap(T? action) async {
if (action?.onTap != null) {
action?.onTap?.call(close);
}
if (widget.dismissOnAction == true) {
await close();
}
}
@protected
handlerTap(T? action) async {
if (action?.onTap != null) {
action?.onTap?.call(close);
}
if (widget.dismissOnAction == true) {
await close();
}
}