sessionTypeXbox property

SessionTypeXbox? sessionTypeXbox

The session is running on an Xbox console

Implementation

SessionTypeXbox? get sessionTypeXbox {
  if (this is SessionTypeXbox) {
    return this as SessionTypeXbox;
  }
  return null;
}