bigIntStringConverter top-level property

StringConverter<BigInt> bigIntStringConverter
final

Implementation

final StringConverter<BigInt> bigIntStringConverter =
    _CallbackStringConverter<BigInt>(
  parse: (v, x, f) =>
      _fromTryParseResult(v == null ? null : BigInt.tryParse(v), v, x, f),
);