addLinkedEdit abstract method

  1. @override
void addLinkedEdit(
  1. String groupName,
  2. void buildLinkedEdit(
    1. DartLinkedEditBuilder builder
    )
)
override

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

@override
void addLinkedEdit(String groupName,
    void Function(DartLinkedEditBuilder builder) buildLinkedEdit);