dropCID method

bool dropCID(
  1. String xx,
  2. String cid
)

Implementation

bool dropCID(String xx, String cid) {
  _xxStash.remove(xx);
  if (cid.isNotEmpty && _io != null) {
    return _io!.dropCid(cid);
  }
  return true;
}