BucketCustomPlacementConfig.fromJson constructor

BucketCustomPlacementConfig.fromJson(
  1. Map json_
)

Implementation

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