GenerateDataKeyWithoutPlaintextResponse.fromJson constructor

GenerateDataKeyWithoutPlaintextResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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