static String intToDecimalStr(int? priceInLong, int factor) { int intValue = priceInLong ?? 0; double parseValue = intValue / factor; return parseValue.toStringAsFixed(2); }