(metadata: FIRUserMetadata)
| 27 | _native: FIRUserMetadata; |
| 28 | |
| 29 | static fromNative(metadata: FIRUserMetadata) { |
| 30 | if (metadata instanceof FIRUserMetadata) { |
| 31 | const meta = new UserMetadata(); |
| 32 | meta._native = metadata; |
| 33 | return meta; |
| 34 | } |
| 35 | return null; |
| 36 | } |
| 37 | |
| 38 | get native() { |
| 39 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected