(seconds: number, nanoseconds: number, native = false)
| 1061 | _native: FIRTimestamp; |
| 1062 | |
| 1063 | constructor(seconds: number, nanoseconds: number, native = false) { |
| 1064 | if (!native) { |
| 1065 | this._native = FIRTimestamp.timestampWithSecondsNanoseconds(seconds, nanoseconds); |
| 1066 | } |
| 1067 | } |
| 1068 | |
| 1069 | static fromNative(timestamp: FIRTimestamp) { |
| 1070 | if (timestamp instanceof FIRTimestamp) { |
nothing calls this directly
no outgoing calls
no test coverage detected