token static method
combined number transform 2-3: from
Implementation
static String token(
BigInt? value,
int decimals, {
int length = 4,
}) {
if (value == null) {
return '~';
}
return doubleFormat(bigIntToDouble(value, decimals), length: length);
}