sessionTypeIphone property

SessionTypeIphone? sessionTypeIphone

The session is running on an iPhone device

Implementation

SessionTypeIphone? get sessionTypeIphone {
  if (this is SessionTypeIphone) {
    return this as SessionTypeIphone;
  }
  return null;
}