removeAsync method

Future<void> removeAsync(
  1. String key
)

Allow to remove the key from config values in async function

Implementation

Future<void> removeAsync(String key) async {
  remove(key);
}