isXXstored method

bool isXXstored(
  1. int xxInt
)

Implementation

bool isXXstored(int xxInt) {
  //available on local storage
  if (_xxStash[xxInt] != null) return true;
  return false;
}