sessionTypeIphone property
The session is running on an iPhone device
Implementation
SessionTypeIphone? get sessionTypeIphone {
  if (this is SessionTypeIphone) {
    return this as SessionTypeIphone;
  }
  return null;
}The session is running on an iPhone device
SessionTypeIphone? get sessionTypeIphone {
  if (this is SessionTypeIphone) {
    return this as SessionTypeIphone;
  }
  return null;
}