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