@nocollapse
(
cls: SerializableConstructor<T>, config: ConfigDict)
| 115 | */ |
| 116 | /** @nocollapse */ |
| 117 | static fromConfig<T extends Serializable>( |
| 118 | cls: SerializableConstructor<T>, config: ConfigDict): T { |
| 119 | return new cls(config); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…