StoreEvent<T>.put constructor

const StoreEvent<T>.put(
  1. String key,
  2. T value
)

Indicates the entry under key has been updated to a new value.

Implementation

const factory StoreEvent.put(
  /// The key of the data that has been updated.
  String key,

  /// The updated data.
  T value,
) = _StorePut<T>;