clausulaInsertDoubleSqlite static method

dynamic clausulaInsertDoubleSqlite(
  1. double? pvalue
)

Implementation

static clausulaInsertDoubleSqlite(double? pvalue) {
  if (pvalue == null) {
    return "0";
  } else {
    return pvalue.toString().replaceAll(".", "").replaceAll(",", ".");
  }
}