addTapGesture method
Implementation
Widget addTapGesture(Function() onTap) {
return GestureDetector(
child: this,
onTap: onTap,
);
}
Widget addTapGesture(Function() onTap) {
return GestureDetector(
child: this,
onTap: onTap,
);
}