setupFromSharedCache method

Future<void> setupFromSharedCache()

Implementation

Future<void> setupFromSharedCache() async {
  Map<String, dynamic>? json = await SharedMemoryCache.getMap(sharedUniqueKey);
  setupFromJson(json);
}