get method
If this entity exists in the manager's cache, return the cached instance. Otherwise, fetch this entity and return it.
Implementation
@override
Future<StageInstance> get() async => manager.stageInstanceCache[channelId] ?? await fetch();
If this entity exists in the manager's cache, return the cached instance. Otherwise, fetch this entity and return it.
@override
Future<StageInstance> get() async => manager.stageInstanceCache[channelId] ?? await fetch();