sessionTypeEdge property

SessionTypeEdge? sessionTypeEdge

The session is running on the Edge browser

Implementation

SessionTypeEdge? get sessionTypeEdge {
  if (this is SessionTypeEdge) {
    return this as SessionTypeEdge;
  }
  return null;
}