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