updateAsync method
Executes fnUpdate
, and notify the listeners about to update as async way.
Implementation
Future<void> updateAsync(void fnUpdate(value)) async {
await super.updateAsync(() => fnUpdate(value));
}
Executes fnUpdate
, and notify the listeners about to update as async way.
Future<void> updateAsync(void fnUpdate(value)) async {
await super.updateAsync(() => fnUpdate(value));
}