BigDecimal

expect constructor(value: String)

Reads a decimal from its plain text, which is the one way of building one that means the same thing on both platforms - java.math.BigDecimal(String) on the JVM, the digits themselves on JS.

Parameters

value

The decimal written out, as numeric renders it.

actual constructor(value: String)