ChangeBuilder constructor

ChangeBuilder({
  1. AnalysisSession session,
  2. ChangeWorkspace workspace,
  3. String eol,
})

Initialize a newly created change builder. If the builder will be used to create changes for Dart files, then either a session or a workspace must be provided (but not both).

Implementation

factory ChangeBuilder(
    {AnalysisSession session,
    ChangeWorkspace workspace,
    String eol}) = ChangeBuilderImpl;