save<T> abstract method

Future<T> save<T>(
  1. String? correlationId,
  2. String key,
  3. dynamic value
)
  • correlationId (optional) transaction id to trace execution through call chain.
  • key a unique state key.
  • value a state value. Return The state that was stored in the store.

Implementation

Future<T> save<T>(String? correlationId, String key, value);