handleTap method
Implementation
void handleTap(BuildContext context) {
if (widget.onTap != null) {
widget.onTap!();
} else {
if (context.canPop()) {
context.pop();
}
}
}
void handleTap(BuildContext context) {
if (widget.onTap != null) {
widget.onTap!();
} else {
if (context.canPop()) {
context.pop();
}
}
}