flutter put cursor in end of textfield code example
Example: flutter texteditingcontroller cursor position
controller.text = someString;
controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length));
controller.text = someString;
controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length));