isSame method

bool isSame({
  1. required HxOrgMemberModel otherModel,
})

Implementation

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