EncryptionConfiguration.fromJson constructor
EncryptionConfiguration.fromJson(
- Map json_
Implementation
EncryptionConfiguration.fromJson(core.Map json_)
: this(
kmsKeyName: json_.containsKey('kmsKeyName')
? json_['kmsKeyName'] as core.String
: null,
);