makeBeaconCacheable function

Beacon makeBeaconCacheable(
  1. Beacon beacon
)

Implementation

Beacon makeBeaconCacheable(Beacon beacon) {
  final cache = <int, Future<BeaconState>>{};

  return _CacheableBeacon(beacon, cache);
}