Returns the base URL of the companion server
()
| 113 | |
| 114 | /** Returns the base URL of the companion server */ |
| 115 | getServerUrl(): string | null { |
| 116 | if (this.serverUrl == undefined) { |
| 117 | return null; |
| 118 | } |
| 119 | return this.serverUrl; |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Returns the Currently set Agent, returns null if there is none. Make sure |
no outgoing calls
no test coverage detected