getStoredHydrate method

Future<T?> getStoredHydrate(
  1. dynamic hydratedStateKey
)

Retreives the hydrated state from a hydratedStateKey. Retruns null if there is no state stored

Implementation

Future<T?> getStoredHydrate(dynamic hydratedStateKey) async {
  if(hydratedStateKey == null) return null;
  return await Fort().lazyBox.get(hydratedStateKey);
}