fromDecimal method

void fromDecimal(
  1. String s
)

Implementation

void fromDecimal(String s) {
  fromBigInt(s.toBigInt());
}