(ts: Timestamp)
| 1234 | } |
| 1235 | |
| 1236 | isEqual(ts: Timestamp): boolean { |
| 1237 | return this.native.compareTo(ts.native) === 0; |
| 1238 | } |
| 1239 | |
| 1240 | toDate() { |
| 1241 | return new Date(this._native.toDate().getTime()); |
nothing calls this directly
no outgoing calls
no test coverage detected