addYamlFileEdit abstract method

Future<void> addYamlFileEdit(
  1. String path,
  2. void buildFileEdit(
    1. YamlFileEditBuilder builder
    )
)

Use the buildFileEdit function to create a collection of edits to the file with the given path. The edits will be added to the source change that is being built.

The builder passed to the buildFileEdit function has additional support for working with YAML source files.

Implementation

Future<void> addYamlFileEdit(
    String path, void Function(YamlFileEditBuilder builder) buildFileEdit);