Gets the value of key in async mode.
key
Future<V?> getAsync<V>(String key) async { if (isLoaded) return get<V>(key); return _callLoaded<V?>(() => get<V>(key)); }