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