onBackPress method

void onBackPress()

Implementation

void onBackPress(){
  if(Navigator.of(ctx).canPop()){
    Navigator.of(ctx).pop();
  }
}