(latitude: number, longitude: number, native: boolean = false)
| 1019 | _native: FIRGeoPoint; |
| 1020 | |
| 1021 | constructor(latitude: number, longitude: number, native: boolean = false) { |
| 1022 | if (!native) { |
| 1023 | this._native = FIRGeoPoint.alloc().initWithLatitudeLongitude(latitude, longitude); |
| 1024 | } |
| 1025 | } |
| 1026 | |
| 1027 | static fromNative(point: FIRGeoPoint) { |
| 1028 | if (point instanceof FIRGeoPoint) { |
nothing calls this directly
no outgoing calls
no test coverage detected