import 'package:flutter/cupertino.dart'; extension ValueNotifierBoolExtensions on ValueNotifier { void flipValue() => value = !value; }