JsonObject.decode constructor
JsonObject.decode(
- String encodedString
Constructs a JsonObject from a base64 encodedString
representation of
the json string
Implementation
JsonObject.decode(String encodedString)
: this.fromBytes(decodeBase64EncodedBytes(encodedString));