readStateFromPersistence method

Future<St?> readStateFromPersistence()

Asks the Persistor to read the state from the local persistence. Important: If you use this, you MUST put this state into the store. The Persistor will assume that's the case, and will not work properly otherwise.

Implementation

Future<St?> readStateFromPersistence() async {
  return _processPersistence?.readState();
}