updateAsync method

  1. @mustCallSuper
Future<void> updateAsync([
  1. covariant Function? callback
])
override

Executes fnUpdate, and notify the listeners about to update as async way.

Implementation

@mustCallSuper
Future<void> updateAsync([Function? callback]) async {
  return super.updateAsync(callback ?? () {});
}