ComponentApiChange constructor
ComponentApiChange({
- required DocComponent component,
- required ApiChangeOperation operation,
- String? annotation,
- String? changedValue,
Implementation
ComponentApiChange({
required super.component,
required super.operation,
super.annotation,
super.changedValue,
}) : assert(_allowedOperations.contains(operation), 'Operation $operation not allowed for component changes'),
super._();