updateAsync method
Executes fnUpdate
, and notify the listeners about to update as async way.
Implementation
@mustCallSuper
Future<void> updateAsync([Function? callback]) async {
return super.updateAsync(callback ?? () {});
}
Executes fnUpdate
, and notify the listeners about to update as async way.
@mustCallSuper
Future<void> updateAsync([Function? callback]) async {
return super.updateAsync(callback ?? () {});
}