onLeftTouch method
dynamic
onLeftTouch()
Implementation
onLeftTouch() {
if (state == null) return;
if (Navigator.canPop(state!.context) == false) return;
Navigator.pop(state!.context);
}
onLeftTouch() {
if (state == null) return;
if (Navigator.canPop(state!.context) == false) return;
Navigator.pop(state!.context);
}