(user: FIRUser)
| 126 | } |
| 127 | |
| 128 | static fromNative(user: FIRUser) { |
| 129 | if (user instanceof FIRUser) { |
| 130 | const usr = new User(); |
| 131 | usr._native = user; |
| 132 | return usr; |
| 133 | } |
| 134 | return null; |
| 135 | } |
| 136 | |
| 137 | get displayName(): string { |
| 138 | return this.native?.displayName; |
no outgoing calls
no test coverage detected