Returns the underlying entity without checking initialization state.
()
| 193 | |
| 194 | /** Returns the underlying entity without checking initialization state. */ |
| 195 | unwrap(): T { |
| 196 | return this.entity; |
| 197 | } |
| 198 | |
| 199 | /** Returns the underlying entity, throwing an error if the reference is not initialized. */ |
| 200 | getEntity(): T { |
no outgoing calls
no test coverage detected