$InventorySourceFilter.fromJson constructor

$InventorySourceFilter.fromJson(
  1. Map json_
)

Implementation

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