()
| 939 | } |
| 940 | |
| 941 | get issuedAtDate() { |
| 942 | const ts = this.native?.getIssuedAtTimestamp?.(); |
| 943 | if (ts) { |
| 944 | return new Date(ts); |
| 945 | } |
| 946 | return null; |
| 947 | } |
| 948 | |
| 949 | get signInProvider() { |
| 950 | return this.native.getSignInProvider?.(); |
nothing calls this directly
no outgoing calls
no test coverage detected