EncryptionConfiguration.fromJson constructor

EncryptionConfiguration.fromJson(
  1. Map json_
)

Implementation

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