static String priceSanitized(double value) { final sanitize = value.toStringAsFixed(2).replaceAll('.', ','); return sanitize; }