JsonObject.decode constructor

JsonObject.decode(
  1. String encodedString
)

Constructs a JsonObject from a base64 encodedString representation of the json string

Implementation

JsonObject.decode(String encodedString)
    : this.fromBytes(decodeBase64EncodedBytes(encodedString));