ConfigChangeEvent constructor

const ConfigChangeEvent({
  1. required String key,
  2. required dynamic oldValue,
  3. required dynamic newValue,
  4. required ConfigScope scope,
  5. required DateTime timestamp,
})

Implementation

const ConfigChangeEvent({
  required this.key,
  required this.oldValue,
  required this.newValue,
  required this.scope,
  required this.timestamp,
});