()
| 43 | } |
| 44 | |
| 45 | get creationDate(): Date { |
| 46 | if (this.native) { |
| 47 | return new Date(this.native?.getCreationTimestamp()); |
| 48 | } |
| 49 | return null; |
| 50 | } |
| 51 | |
| 52 | get lastSignInDate(): Date { |
| 53 | if (this.native) { |
nothing calls this directly
no outgoing calls
no test coverage detected