get method

  1. @override
Future<T> get()
override

If this entity exists in the manager's cache, return the cached instance. Otherwise, fetch this entity and return it.

Implementation

@override
Future<T> get() => manager.get(id);