delete<T> abstract method

Future<T?> delete<T>(
  1. String? correlationId,
  2. String key
)

Deletes a state from the store by its key.

  • correlationId (optional) transaction id to trace execution through call chain.
  • key a unique value key.

Implementation

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