balanceDouble static method

double balanceDouble(
  1. String raw,
  2. int decimals
)

combined number transform 1-2: from raw

Implementation

static double balanceDouble(String raw, int decimals) {
  return bigIntToDouble(balanceInt(raw), decimals);
}