ConfigChange constructor

ConfigChange({
  1. String element = '',
  2. String oldValue = '',
  3. String newValue = '',
  4. ChangeType changeType = ChangeType.$default,
  5. List<Advice> advices = const [],
})

Implementation

ConfigChange({
  this.element = '',
  this.oldValue = '',
  this.newValue = '',
  this.changeType = ChangeType.$default,
  this.advices = const [],
}) : super(fullyQualifiedName);