tryParse static method

Decimal128? tryParse(
  1. String source
)

Parses a string into a Decimal128. Returns null if the string is not a valid Decimal128.

Implementation

static Decimal128? tryParse(String source) => impl.Decimal128.tryParse(source);