This commit is contained in:
Filip Krawczyk 2022-08-23 01:07:40 +02:00
parent 12084a3421
commit 55daacf221
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ class TextLinesIterator extends Iterator {
: end = -1,
beg = -1;
TextLinesIterator.fromController(TextEditingController controller) :
this(controller.text, selection: controller.selection);
TextLinesIterator.fromController(TextEditingController controller)
: this(controller.text, selection: controller.selection);
bool get isWithinSelection {
final selection = this.selection;