ConstructorApiChange constructor
ConstructorApiChange({
- required DocComponent component,
- required ApiChangeOperation operation,
- required DocConstructor constructor,
- String? annotation,
- String? changedValue,
Implementation
ConstructorApiChange({
required super.component,
required super.operation,
required this.constructor,
super.annotation,
super.changedValue,
}) : assert(
!_disallowedConstructorOperations.contains(operation), 'Operation $operation not allowed for constructors'),
super._();