dropCid method

bool dropCid(
  1. String cid
)

Implementation

bool dropCid(String cid) {
  final t = _xxBox.delete(cid);
  if (t != null) return true;
  return false;
}