* Sets default values of application state properties.
()
| 429 | * Sets default values of application state properties. |
| 430 | */ |
| 431 | setStateDefaults() { |
| 432 | Object.keys(this.stateDefaults).forEach(key => this.state[key].value = this.stateDefaults[key]); |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | /** |