DecryptResponse.fromJson constructor
      
      DecryptResponse.fromJson(
    
    
- Map json_
Implementation
DecryptResponse.fromJson(core.Map json_)
  : this(
      plaintext: json_['plaintext'] as core.String?,
      plaintextCrc32c: json_['plaintextCrc32c'] as core.String?,
      protectionLevel: json_['protectionLevel'] as core.String?,
      usedPrimary: json_['usedPrimary'] as core.bool?,
    );