flutter cursor psition input tet code example
Example: flutter textfield 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));