ListDeliveryPipelinesResponse.fromJson constructor
ListDeliveryPipelinesResponse.fromJson(
- Map json_
Implementation
ListDeliveryPipelinesResponse.fromJson(core.Map json_)
: this(
deliveryPipelines: json_.containsKey('deliveryPipelines')
? (json_['deliveryPipelines'] as core.List)
.map((value) => DeliveryPipeline.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
unreachable: json_.containsKey('unreachable')
? (json_['unreachable'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);