(props: InnerProps | undefined | null)
| 12 | } |
| 13 | |
| 14 | static create(props: InnerProps | undefined | null): IPublicModelProps | null { |
| 15 | if (!props) { |
| 16 | return null; |
| 17 | } |
| 18 | return new Props(props); |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * id |
no outgoing calls
no test coverage detected