Encryption.parse constructor

Encryption.parse(
  1. Map json
)

Implementation

factory Encryption.parse(Map json) => Encryption._(Uri.parse(json["profile"]),
    ContentKey.parse(json["content_key"]), UserKey.parse(json["user_key"]));