BucketStorageLayoutCustomPlacementConfig.fromJson constructor
      
      BucketStorageLayoutCustomPlacementConfig.fromJson(
    
    
- Map json_
 
Implementation
BucketStorageLayoutCustomPlacementConfig.fromJson(core.Map json_)
    : this(
        dataLocations: json_.containsKey('dataLocations')
            ? (json_['dataLocations'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );