PropertyChanged typedef

PropertyChanged = void Function()

Signature for a callback function that is called to tell properties that they have updated values.

Used a lot like ChangeNotifier.notifyListeners.

Implementation

typedef PropertyChanged = void Function();