calculateDiscountValue static method
Implementation
static String calculateDiscountValue(
String basePrice, String discountPrice) {
try {
final discountPerc =
(double.parse(discountPrice) ~/ double.parse(basePrice)) * 100;
return discountPerc.toString();
} catch (e) {
return 'N/A';
}
}