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