addLinesAfter method
void
addLinesAfter(
- AFCommandContext context,
- RegExp match,
- List<
String> lines, { - bool preventDuplicates = true,
Implementation
void addLinesAfter(AFCommandContext context, RegExp match, List<String> lines, {
bool preventDuplicates = true
}) {
if(!preventDuplicates || !isDuplicateDeclaration(context, lines)) {
buffer.addLinesAfter(context, match, lines);
}
}