BucketStorageLayoutCustomPlacementConfig.fromJson constructor

BucketStorageLayoutCustomPlacementConfig.fromJson(
  1. Map json_
)

Implementation

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