toSun static method

BigInt toSun(
  1. String amount
)

Converts a string amount to SUN (smallest unit in Tron).

Implementation

static BigInt toSun(String amount) {
  final parse = BigRational.parseDecimal(amount);
  return (parse * _trxDecimal).toBigInt();
}