Get the stash value for the specified key.
key
@override Future<T?> operator [](String key) { return _primary[key] .then((value) => value != null ? Future.value(value) : _secondary[key]); }