sessionTypeIpad property

SessionTypeIpad? sessionTypeIpad

The session is running on an iPad device

Implementation

SessionTypeIpad? get sessionTypeIpad {
  if (this is SessionTypeIpad) {
    return this as SessionTypeIpad;
  }
  return null;
}