tryParse method Null safety

BigInt? tryParse (
  1. String source,
  2. {int? radix}
)

Parses source as a, possibly signed, integer literal and returns its value.

As parse except that this method returns null if the input is not valid

Implementation

external static BigInt? tryParse(String source, {int? radix});