Instance initializer. Args: initial_value: A boolean value with the initial state of the flag.
(self, initial_value)
| 218 | """ |
| 219 | |
| 220 | def __init__(self, initial_value): |
| 221 | """Instance initializer. |
| 222 | |
| 223 | Args: |
| 224 | initial_value: A boolean value with the initial state of the flag. |
| 225 | """ |
| 226 | self._value = initial_value |
| 227 | super().__init__() |
| 228 | |
| 229 | def toggle(self): |
| 230 | """Toggles the value True/False.""" |