How to get the data of TextFormField as a double in flutter
you need to remove "," from the string then after parse to double.
double _pointsUsing = double.parse(pointsEdditingController.text.replaceAll(",",""));
You can do this way :
print( double.tryParse('2,456.90'.replaceAll(",","")));