base64UrlUintTryDecode function

BigInt? base64UrlUintTryDecode(
  1. String? input
)

Implementation

BigInt? base64UrlUintTryDecode(String? input) {
  try {
    return base64UrlUint.decode(input);
  } on FormatException {
    return null;
  }
}