DataChangedEvent constructor

DataChangedEvent({
  1. required String sourceModuleId,
  2. required String dataKey,
  3. dynamic oldValue,
  4. dynamic newValue,
})

Implementation

DataChangedEvent({
  required super.sourceModuleId,
  required this.dataKey,
  this.oldValue,
  this.newValue,
});