ConfigDiff constructor

const ConfigDiff({
  1. required String key,
  2. required dynamic oldValue,
  3. required dynamic newValue,
  4. required ConfigScope scope,
})

Implementation

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