ConfigChange constructor

ConfigChange({
  1. List<Advice>? advices,
  2. String? changeType,
  3. String? element,
  4. String? newValue,
  5. String? oldValue,
})

Implementation

ConfigChange({
  this.advices,
  this.changeType,
  this.element,
  this.newValue,
  this.oldValue,
});