stringToDouble static method

String stringToDouble(
  1. String value, {
  2. bool isOdd = false,
})

Implementation

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