BucketEncryptionGoogleManagedEncryptionEnforcementConfig.fromJson constructor
      
      BucketEncryptionGoogleManagedEncryptionEnforcementConfig.fromJson(
    
    
- Map json_
Implementation
BucketEncryptionGoogleManagedEncryptionEnforcementConfig.fromJson(
  core.Map json_,
) : this(
      effectiveTime:
          json_.containsKey('effectiveTime')
              ? core.DateTime.parse(json_['effectiveTime'] as core.String)
              : null,
      restrictionMode: json_['restrictionMode'] as core.String?,
    );