ApiChange constructor

ApiChange({
  1. required ApiChangeCode changeCode,
  2. required List<Declaration> contextTrace,
  3. Declaration? affectedDeclaration,
  4. required String changeDescription,
  5. required ApiChangeType type,
  6. required bool isExperimental,
})

creates a new ApiChange instance

Implementation

ApiChange({
  required this.changeCode,
  required this.contextTrace,
  this.affectedDeclaration,
  required this.changeDescription,
  required this.type,
  required this.isExperimental,
});