(field: com.google.firebase.firestore.FieldPath)
| 1076 | } |
| 1077 | |
| 1078 | static fromNative(field: com.google.firebase.firestore.FieldPath) { |
| 1079 | if (field instanceof com.google.firebase.firestore.FieldPath) { |
| 1080 | const path = new FieldPath([], true); |
| 1081 | path._native = field; |
| 1082 | return path; |
| 1083 | } |
| 1084 | return null; |
| 1085 | } |
| 1086 | |
| 1087 | get native() { |
| 1088 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected