(point: com.google.firebase.firestore.GeoPoint)
| 1152 | } |
| 1153 | |
| 1154 | static fromNative(point: com.google.firebase.firestore.GeoPoint) { |
| 1155 | if (point instanceof com.google.firebase.firestore.GeoPoint) { |
| 1156 | const geo = new GeoPoint(0, 0, true); |
| 1157 | geo._native = point; |
| 1158 | return geo; |
| 1159 | } |
| 1160 | return null; |
| 1161 | } |
| 1162 | |
| 1163 | get latitude(): number { |
| 1164 | return this.native.getLatitude(); |
nothing calls this directly
no outgoing calls
no test coverage detected