base64UriDecode static method

List<int> base64UriDecode(
  1. String s
)

Implementation

static List<int> base64UriDecode(String s) {
  return const Base64Codec.urlSafe()
      .decode(s + '=' * ((4 - s.length % 4) % 4));
}