removeLine method
Removes a line from the paragraph at the specified index.
index
is the index of the line to be removed.
Implementation
void removeLine(int index) {
lines.removeAt(index);
}
Removes a line from the paragraph at the specified index.
index
is the index of the line to be removed.
void removeLine(int index) {
lines.removeAt(index);
}