createChangeBuilder abstract method

ChangeBuilder createChangeBuilder({
  1. required String message,
  2. required int priority,
  3. String? id,
})

Creates a ChangeBuilder, which can then be used to modify files.

message is the name that will show-up in the IDE when users request changes.

priority defines how high/low in the list of proposed changes will this change be.

Implementation

ChangeBuilder createChangeBuilder({
  required String message,
  required int priority,
  String? id,
});