sessionTypeFirefox property

SessionTypeFirefox? sessionTypeFirefox

The session is running on the Firefox browser

Implementation

SessionTypeFirefox? get sessionTypeFirefox {
  if (this is SessionTypeFirefox) {
    return this as SessionTypeFirefox;
  }
  return null;
}