setAsync method

Future<void> setAsync(
  1. String key,
  2. String? value
)

Allow to set the value into config values in async function

Implementation

Future<void> setAsync(String key, String? value) async {
  set(key, value);
}