isValid method

bool isValid()

Implementation

bool isValid(){
  if (getId().isEmpty) return false;
  if (getKey().isEmpty) return false;
  if (getName().isEmpty) return false;
  return true;
}