EncryptionKey constructor

EncryptionKey({
  1. String? gcpKmsEncryptionKey,
})

Implementation

factory EncryptionKey({
  $core.String? gcpKmsEncryptionKey,
}) {
  final $result = create();
  if (gcpKmsEncryptionKey != null) {
    $result.gcpKmsEncryptionKey = gcpKmsEncryptionKey;
  }
  return $result;
}