Formatting

This commit is contained in:
Lukas Klingsbo
2020-11-01 15:06:33 +01:00
parent 0577b2eb76
commit c17c6f2bc2

View File

@ -16,7 +16,7 @@ abstract class ComponentEffect<T extends Component> {
bool _isDisposed = false;
bool get isDisposed => _isDisposed;
bool _isPaused = false;
bool get isPaused => _isPaused;
void resume() => _isPaused = false;