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