updateRawState method

  1. @override
void updateRawState(
  1. String id,
  2. dynamic state
)
inherited

Must update the serialized state data associated with id. This is called on the client when new data is loaded for a LazyRoute.

Implementation

@override
void updateRawState(String id, dynamic state) {
  _rawState[id] = state;
}