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