MethodApiChange constructor

MethodApiChange({
  1. required DocComponent component,
  2. required ApiChangeOperation operation,
  3. required DocMethod method,
  4. String? newType,
  5. String? annotation,
})

Implementation

MethodApiChange({
  required super.component,
  required super.operation,
  required this.method,
  this.newType,
  super.annotation,
}) : super._();