Props.decode constructor
Props.decode(
- String encoded
Creates a Props instance by decoding a base64-encoded JSON string.
Implementation
factory Props.decode(String encoded) {
return Props(decodeProps(encoded));
}