update method

  1. @override
  2. @mustCallSuper
void update([
  1. covariant Function? callback
])
override

Executes callback, and notify the listeners about to update.

Implementation

@override
@mustCallSuper
void update([Function? callback]) {
  return super.update(callback ?? () {});
}