ConstructorApiChange constructor

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