priceFloorBigInt static method
Implementation
static String priceFloorBigInt(
BigInt? value,
int decimals, {
int lengthFixed = 2,
int? lengthMax,
}) {
if (value == null) {
return '~';
}
return priceFloor(Fmt.bigIntToDouble(value, decimals),
lengthFixed: lengthFixed, lengthMax: lengthMax);
}