updateStateAsync<T> method

Future<void> updateStateAsync<T>(
  1. String key,
  2. Future<T> updater()
)

Cập nhật state bất đồng bộ

Implementation

Future<void> updateStateAsync<T>(String key, Future<T> Function() updater) async {
  final state = getState<T>(key);
  await state.updateAsync(updater);
}