addLinkedEdit abstract method

void addLinkedEdit(
  1. String groupName,
  2. void buildLinkedEdit(
    1. LinkedEditBuilder builder
    )
)

Add a region of text that is part of the linked edit group with the given groupName. The buildLinkedEdit function is used to write the content of the region of text and to add suggestions for other possible values for that region.

Implementation

void addLinkedEdit(String groupName,
    void Function(LinkedEditBuilder builder) buildLinkedEdit);