TStoreChanges constructor

const TStoreChanges({
  1. required TStoreChangeType type,
  2. dynamic value,
  3. String? key,
})

Implementation

const TStoreChanges({
  required this.type,
  this.value,
  this.key,
});