isXXstored method

bool isXXstored(
  1. String xxInt
)

Implementation

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