GenerateDataKeyWithoutPlaintextResponse.fromJson constructor
Implementation
factory GenerateDataKeyWithoutPlaintextResponse.fromJson(
Map<String, dynamic> json) {
return GenerateDataKeyWithoutPlaintextResponse(
ciphertextBlob:
_s.decodeNullableUint8List(json['CiphertextBlob'] as String?),
keyId: json['KeyId'] as String?,
);
}