onNotification<T> method

  1. @override
  2. @mustCallSuper
void onNotification<T>(
  1. SaveProvider<T> provider
)
override

What to do when the observables are changed.

Implementation

@override
@mustCallSuper
void onNotification<T>(SaveProvider<T> provider) {
  _index = 0;
  super.onNotification(provider);
}