removeLeadingEmptyLine method
Implementation
void removeLeadingEmptyLine(ListItem item) {
if (item.lines.isNotEmpty && _emptyPattern.hasMatch(item.lines.first)) {
item.lines.removeAt(0);
}
}
void removeLeadingEmptyLine(ListItem item) {
if (item.lines.isNotEmpty && _emptyPattern.hasMatch(item.lines.first)) {
item.lines.removeAt(0);
}
}