MethodParameterApiChange constructor

MethodParameterApiChange({
  1. required DocComponent component,
  2. required ApiChangeOperation operation,
  3. required DocMethod method,
  4. required DocParameter parameter,
  5. String? oldName,
  6. String? annotation,
})

Implementation

MethodParameterApiChange({
  required super.component,
  required super.operation,
  required this.method,
  required super.parameter,
  super.oldName,
  super.annotation,
}) : super(parentName: method.name);