decodeJSON function

dynamic decodeJSON(
  1. String str
)

Implementation

dynamic decodeJSON(String str) {
  return jsonDecode(utf8.decode(B64urlEncRfc7515.decode(str)));
}