ConfigChange constructor
ConfigChange({})
Implementation
factory ConfigChange({
$core.String? element,
$core.String? oldValue,
$core.String? newValue,
ChangeType? changeType,
$core.Iterable<Advice>? advices,
}) {
final result = create();
if (element != null) result.element = element;
if (oldValue != null) result.oldValue = oldValue;
if (newValue != null) result.newValue = newValue;
if (changeType != null) result.changeType = changeType;
if (advices != null) result.advices.addAll(advices);
return result;
}