| # setValue method | |
| *[<Null safety>](https://dart.dev/null-safety)* | |
| - @override | |
| void setValue | |
| (bool value) | |
| <p>Sets the value of this <code>Property</code>.</p> | |
| ## Implementation | |
| ```dart | |
| @override | |
| void setValue(bool value) { | |
| _writer?.setBool(index, value); | |
| } | |
| ``` | |