sessionTypeWindows property

SessionTypeWindows? sessionTypeWindows

The session is running on a Windows device

Implementation

SessionTypeWindows? get sessionTypeWindows {
  if (this is SessionTypeWindows) {
    return this as SessionTypeWindows;
  }
  return null;
}