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