BucketEncryption.fromJson constructor

BucketEncryption.fromJson(
  1. Map json_
)

Implementation

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