stringToDouble static method
Implementation
static String stringToDouble(String value, {bool isOdd = false}) {
if (!isOdd) return value.replaceAll('.', '');
if (value.contains(',')) return value.replaceAll('.', '').replaceFirst(',', '.');
return value;
}