isSame method
Implementation
bool isSame({required HxOrgMemberModel otherModel}) {
if (otherModel.mainId == mainId && otherModel.deptId == deptId) {
return true;
}
return false;
}
bool isSame({required HxOrgMemberModel otherModel}) {
if (otherModel.mainId == mainId && otherModel.deptId == deptId) {
return true;
}
return false;
}