EncryptionKey.fromJson constructor

EncryptionKey.fromJson(
  1. Map json_
)

Implementation

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