(metric: com.google.firebase.perf.metrics.HttpMetric)
| 18 | _native: com.google.firebase.perf.metrics.HttpMetric; |
| 19 | |
| 20 | static fromNative(metric: com.google.firebase.perf.metrics.HttpMetric) { |
| 21 | if (metric instanceof com.google.firebase.perf.metrics.HttpMetric) { |
| 22 | const result = new HttpMetric(); |
| 23 | result._native = metric; |
| 24 | return result; |
| 25 | } |
| 26 | return null; |
| 27 | } |
| 28 | |
| 29 | get native() { |
| 30 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected