PropertyApiChange constructor

PropertyApiChange({
  1. required DocComponent component,
  2. required ApiChangeOperation operation,
  3. required DocProperty property,
  4. String? annotation,
  5. 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._();