forObject property

Same as unionMap.values.first, useful when you know this selection is for an object an not an union

Implementation

PossibleSelectionsObject get forObject {
  assert(!isUnion);
  return unionMap.values.first;
}