Future<T> getOrCreate(String id, {required C create()}) async { final existing = await load(id); return existing ?? await this.create(create()); }