removeResidentKit method

bool removeResidentKit(
  1. String tag
)

Implementation

bool removeResidentKit(String tag) {
  if (residentList.contains(tag)) {
    residentList.remove(tag);
    SPService.instance.set(keyKitPageCache, listToString(residentList));
    return true;
  }
  return false;
}