Props.decode constructor

Props.decode(
  1. String encoded
)

Creates a Props instance by decoding a base64-encoded JSON string.

Implementation

factory Props.decode(String encoded) {
  return Props(decodeProps(encoded));
}