static String? priceConvert({required String? price}) { if (price?.isNotEmpty == true) { return price?.replaceAll(".", "").replaceAll("đ", ""); } else { return ""; } }